winsys-glx: map X window automatically if not foreign
authorRobert Bragg <robert@linux.intel.com>
Mon, 18 Apr 2011 15:26:17 +0000 (16:26 +0100)
committerRobert Bragg <robert@linux.intel.com>
Thu, 5 May 2011 13:46:03 +0000 (14:46 +0100)
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.

clutter/cogl/cogl/winsys/cogl-winsys-glx.c

index b15263c..1f115f2 100644 (file)
@@ -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)