1GLXWAITGL(3G) OpenGL Manual GLXWAITGL(3G)
2
3
4
6 glXWaitGL - complete GL execution prior to subsequent X calls
7
9 void glXWaitGL(void);
10
12 GL rendering calls made prior to glXWaitGL are guaranteed to be
13 executed before X rendering calls made after glXWaitGL. Although this
14 same result can be achieved using glFinish(), glXWaitGL does not
15 require a round trip to the server, and it is therefore more efficient
16 in cases where client and server are on separate machines.
17
18 glXWaitGL is ignored if there is no current GLX context.
19
21 glXWaitGL may or may not flush the X stream.
22
24 GLXBadCurrentWindow is generated if the drawable associated with the
25 current context of the calling thread is a window, and that window is
26 no longer valid.
27
29 glFinish(), glFlush(), glXWaitX(), XSync
30
32 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
33 under the SGI Free Software B License. For details, see
34 http://oss.sgi.com/projects/FreeB/.
35
37 opengl.org
38
39
40
41opengl.org 07/13/2018 GLXWAITGL(3G)