1GLXQUERYVERSION() GLXQUERYVERSION()
2
3
4
6 glXQueryVersion - return the version numbers of the GLX extension
7
8
10 Bool glXQueryVersion( Display *dpy,
11 int *major,
12 int *minor )
13
14 delim $$
15
17 dpy Specifies the connection to the X server.
18
19 major Returns the major version number of the GLX server extension.
20
21 minor Returns the minor version number of the GLX server extension.
22
24 glXQueryVersion returns the major and minor version numbers of the GLX
25 extension implemented by the server associated with connection dpy.
26 Implementations with the same major version number are upward compatiā
27 ble, meaning that the implementation with the higher minor number is a
28 superset of the version with the lower minor number.
29
30 major and minor do not return values if they are specified as NULL.
31
33 glXQueryVersion returns False if it fails, True otherwise.
34
35 major and minor are not updated when False is returned.
36
38 glXQueryExtension
39
40
41
42 GLXQUERYVERSION()