1GLXWAITX() GLXWAITX()
2
3
4
6 glXWaitX - complete X execution prior to subsequent GL calls
7
8
10 void glXWaitX( void )
11
12 delim $$
13
15 X rendering calls made prior to glXWaitX are guaranteed to be executed
16 before GL rendering calls made after glXWaitX. Although the same
17 result can be achieved using XSync, glXWaitX does not require a round
18 trip to the server, and it is therefore more efficient in cases where
19 client and server are on separate machines.
20
21 glXWaitX is ignored if there is no current GLX context.
22
24 glXWaitX may or may not flush the GL stream.
25
27 GLXBadCurrentWindow is generated if the drawable associated with the
28 current context of the calling thread is a window, and that window is
29 no longer valid.
30
32 glFinish, glFlush, glXWaitGL, XSync
33
34
35
36
37 GLXWAITX()