From b7927078e9b2dec995eaec8240a87b683349aefb Mon Sep 17 00:00:00 2001 From: emersion Date: Thu, 28 Sep 2017 23:26:31 +0200 Subject: x11 -> xwayland, window -> surface, fix some calloc sizes and wrong types --- examples/compositor.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/compositor.c b/examples/compositor.c index 7d6efdb6..b1b55190 100644 --- a/examples/compositor.c +++ b/examples/compositor.c @@ -320,10 +320,11 @@ static void handle_output_frame(struct output_state *output, } } } - struct wlr_x11_window *x11_window; - wl_list_for_each(x11_window, &sample->xwayland->displayable_windows, link) { + struct wlr_xwayland_surface *xwayland_surface; + wl_list_for_each(xwayland_surface, &sample->xwayland->displayable_surfaces, + link) { output_frame_handle_surface(sample, wlr_output, ts, - x11_window->surface->resource, 200, 200); + xwayland_surface->surface->resource, 200, 200); } wlr_renderer_end(sample->renderer); -- cgit v1.2.3