Lines Matching defs:region
214 struct wl_region* region = wl_compositor_create_region(_glfw.wl.compositor);
215 wl_region_add(region, 0, 0, width, height);
216 wl_surface_set_opaque_region(edge->surface, region);
218 wl_region_destroy(region);
303 struct wl_region* region;
305 region = wl_compositor_create_region(_glfw.wl.compositor);
306 if (!region)
309 wl_region_add(region, 0, 0, window->wl.width, window->wl.height);
310 wl_surface_set_opaque_region(window->wl.surface, region);
311 wl_region_destroy(region);
2617 struct wl_region* region = wl_compositor_create_region(_glfw.wl.compositor);
2618 wl_surface_set_input_region(window->wl.surface, region);
2619 wl_region_destroy(region);