diff options
author | Daniel Stone <daniels@collabora.com> | 2018-05-09 13:16:15 +0100 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2019-02-15 12:03:48 +0000 |
commit | 68fa80e83118a7a2be037eb235e5d211912dee0e (patch) | |
tree | 3dac9396aa5b16ec91a50aac40de8051cd9cee10 | |
parent | 2a1176973a51933a4605285ebab17e49ab790f35 (diff) |
waylandsink: Don't create throwaway empty regions
Instead of creating a region, adding nothing to it, setting that as the
input region and destroying the region, you can instead just pass NULL
to wl_surface_set_input_region for the same effect.
Fixes #702
-rw-r--r-- | ext/wayland/wlwindow.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/ext/wayland/wlwindow.c b/ext/wayland/wlwindow.c index e1efb75ed..add15d9b6 100644 --- a/ext/wayland/wlwindow.c +++ b/ext/wayland/wlwindow.c @@ -114,7 +114,6 @@ static GstWlWindow * gst_wl_window_new_internal (GstWlDisplay * display, GMutex * render_lock) { GstWlWindow *window; - struct wl_region *region; window = g_object_new (GST_TYPE_WL_WINDOW, NULL); window->display = g_object_ref (display); @@ -146,13 +145,8 @@ gst_wl_window_new_internal (GstWlDisplay * display, GMutex * render_lock) } /* do not accept input */ - region = wl_compositor_create_region (display->compositor); - wl_surface_set_input_region (window->area_surface, region); - wl_region_destroy (region); - - region = wl_compositor_create_region (display->compositor); - wl_surface_set_input_region (window->video_surface, region); - wl_region_destroy (region); + wl_surface_set_input_region (window->area_surface, NULL); + wl_surface_set_input_region (window->video_surface, NULL); return window; } |