| 2100 | // Same as glXGetClientString(GLX_EXTENSIONS) |
| 2101 | |
| 2102 | const char *glXQueryExtensionsString(Display *dpy, int screen) |
| 2103 | { |
| 2104 | TRY(); |
| 2105 | |
| 2106 | if(IS_EXCLUDED(dpy)) |
| 2107 | return _glXQueryExtensionsString(dpy, screen); |
| 2108 | |
| 2109 | return getGLXExtensions(); |
| 2110 | |
| 2111 | CATCH(); |
| 2112 | return NULL; |
| 2113 | } |
| 2114 | |
| 2115 | |
| 2116 | // Same as glXGetClientString() in our case |
no test coverage detected