1GLXWAITX(3G) OpenGL Manual GLXWAITX(3G)
2
3
4
6 glXWaitX - complete X execution prior to subsequent GL calls
7
9 void glXWaitX(void);
10
12 X rendering calls made prior to glXWaitX are guaranteed to be executed
13 before GL rendering calls made after glXWaitX. Although the same result
14 can be achieved using XSync, glXWaitX does not require a round trip to
15 the server, and it is therefore more efficient in cases where client
16 and server are on separate machines.
17
18 glXWaitX is ignored if there is no current GLX context.
19
21 glXWaitX may or may not flush the GL 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(), glXWaitGL(), 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 GLXWAITX(3G)