diff options
author | Alan Hourihane <alanh@vmware.com> | 2009-02-16 11:54:58 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@vmware.com> | 2009-02-16 11:56:21 +0000 |
commit | cfae542d1f34d95ce6a740311d8331a74307d31f (patch) | |
tree | 2282d0341ca8f2f6c0bf4713d4da73178e325d51 | |
parent | 63b51b5cf17ddde09b72a2811296f37b9a4c5ad2 (diff) |
demos: fix glxpixmap and call glXWaitGL before calling XCopyArea.
-rw-r--r-- | progs/xdemos/glxpixmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/xdemos/glxpixmap.c b/progs/xdemos/glxpixmap.c index 9db4df2c8b..e1abd22cee 100644 --- a/progs/xdemos/glxpixmap.c +++ b/progs/xdemos/glxpixmap.c @@ -178,6 +178,7 @@ int main( int argc, char *argv[] ) glColor3f( 0.0, 1.0, 1.0 ); glRectf( -0.75, -0.75, 0.75, 0.75 ); glFlush(); + glXWaitGL(); XMapWindow( dpy, win ); |