[vlc-commits] xcb/window: ignore the structure events
Rémi Denis-Courmont
git at videolan.org
Sun Nov 29 18:05:21 CET 2020
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Nov 29 19:03:53 2020 +0200| [555f29b0c0981567c6043f3fd8247fa49ffe5fa8] | committer: Rémi Denis-Courmont
xcb/window: ignore the structure events
No need to log those; we know what they and why we receive them.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=555f29b0c0981567c6043f3fd8247fa49ffe5fa8
---
modules/video_output/xcb/window.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/modules/video_output/xcb/window.c b/modules/video_output/xcb/window.c
index 5b71cbb6d1..44771b7d5b 100644
--- a/modules/video_output/xcb/window.c
+++ b/modules/video_output/xcb/window.c
@@ -291,6 +291,15 @@ static int ProcessEvent(vout_window_t *wnd, xcb_generic_event_t *ev)
vout_window_ReportClose (wnd);
break;
+ case XCB_UNMAP_NOTIFY:
+ break;
+
+ case XCB_MAP_NOTIFY:
+ break;
+
+ case XCB_REPARENT_NOTIFY:
+ break;
+
case XCB_MAPPING_NOTIFY:
break;
More information about the vlc-commits
mailing list