1GLXDESTROYGLXPIXMAP() GLXDESTROYGLXPIXMAP()
2
3
4
6 glXDestroyGLXPixmap - destroy a GLX pixmap
7
8
10 void glXDestroyGLXPixmap( Display *dpy,
11 GLXPixmap pix )
12
13 delim $$
14
16 dpy Specifies the connection to the X server.
17
18 pix Specifies the GLX pixmap to be destroyed.
19
21 If the GLX pixmap pix is not current to any client, glXDestroyGLXPixmap
22 destroys it immediately. Otherwise, pix is destroyed when it becomes
23 not current to any client. In either case, the resource ID is freed
24 immediately.
25
27 GLXBadPixmap is generated if pix is not a valid GLX pixmap.
28
30 glXCreateGLXPixmap, glXMakeCurrent
31
32
33
34 GLXDESTROYGLXPIXMAP()