mirror of
https://github.com/brl/mutter.git
synced 2024-12-25 20:32:16 +00:00
egl: fix args to cogl_onscreen_x11_set_foreign_window_xid
We hadn't updated the egl backend inline with a change to the arguments that cogl_onscreen_x11_set_foreign_window_xid would expect and that was causing a compilation error.
This commit is contained in:
parent
05bcd40729
commit
951cb82ec5
@ -78,8 +78,14 @@ clutter_stage_egl_realize (ClutterStageWindow *stage_window)
|
|||||||
width, height);
|
width, height);
|
||||||
#ifdef COGL_HAS_XLIB_SUPPORT
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
||||||
if (stage_x11->xwin != None)
|
if (stage_x11->xwin != None)
|
||||||
cogl_onscreen_x11_set_foreign_window_xid (stage_egl->onscreen,
|
{
|
||||||
stage_x11->xwin);
|
cogl_onscreen_x11_set_foreign_window_xid (
|
||||||
|
stage_egl->onscreen,
|
||||||
|
stage_x11->xwin,
|
||||||
|
_clutter_stage_x11_update_foreign_event_mask,
|
||||||
|
stage_x11);
|
||||||
|
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
clutter_vblank = _clutter_backend_egl_get_vblank ();
|
clutter_vblank = _clutter_backend_egl_get_vblank ();
|
||||||
|
Loading…
Reference in New Issue
Block a user