1GLXQUERYEXTENSIONSSTRING() GLXQUERYEXTENSIONSSTRING()
2
3
4
6 glXQueryExtensionsString - return list of supported extensions
7
8
10 const char * glXQueryExtensionsString( Display *dpy,
11 int screen )
12
13 delim $$
14
16 dpy Specifies the connection to the X server.
17
18 screen Specifies the screen.
19
21 glXQueryExtensionsString returns a pointer to a string describing
22 which GLX extensions are supported on the connection. The string is
23 null-terminated and contains a space-separated list of extension names.
24 (The extension names themselves never contain spaces.) If there are no
25 extensions to GLX, then the empty string is returned.
26
28 glXQueryExtensionsString is available only if the GLX version is 1.1 or
29 greater.
30
31 glXQueryExtensionsString only returns information about GLX extensions.
32 Call glGetString to get a list of GL extensions.
33
35 glGetString, glXQueryVersion, glXQueryServerString, glXGetClientString
36
37
38
39 GLXQUERYEXTENSIONSSTRING()