mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 19:42:05 +00:00
winsys-glx: map X window automatically if not foreign
For now we are going for the semantics that when a CoglOnscreen is first allocated then it will automatically be mapped. This is for convenience and if you don't want that behaviour then it is possible to instead create an Onscreen from a foreign X window and in that case it wont be mapped automatically. This approach means that Cogl doesn't need onscreen_map/unmap functions but it's possible we'll decide later that we can't avoid adding such functions and we'll have to change these semantics.
This commit is contained in:
parent
4bf868c0eb
commit
cd6d561f6f
@ -806,6 +806,8 @@ _cogl_winsys_onscreen_init (CoglOnscreen *onscreen,
|
||||
|
||||
XFree (xvisinfo);
|
||||
|
||||
XMapWindow (xlib_renderer->xdpy, xwin);
|
||||
|
||||
XSync (xlib_renderer->xdpy, False);
|
||||
xerror = _cogl_renderer_xlib_untrap_errors (display->renderer, &state);
|
||||
if (xerror)
|
||||
|
Loading…
Reference in New Issue
Block a user