diff options
author | Sven Gothel <[email protected]> | 2012-09-29 03:14:30 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-09-29 03:14:30 +0200 |
commit | e0904a65bcf87ea0fd41d76cc1af7ad29daaefb5 (patch) | |
tree | 009fe4b34f9ec24c0059e4ea6294f23e7bb61bf3 /src/test-native/glExtensionsListGL2.c | |
parent | 18ae6451a5531f46f56389bd7071db1d988e80d7 (diff) |
Misc X11: Add GLX_MESA_swap_control; GLXExtensions (private); X11GLXContext commented out GLX_MESA_swap_control; native test of Mesa context-retarget bug, cannot reproduce yet.
Diffstat (limited to 'src/test-native/glExtensionsListGL2.c')
-rw-r--r-- | src/test-native/glExtensionsListGL2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test-native/glExtensionsListGL2.c b/src/test-native/glExtensionsListGL2.c index 89815e9c0..ea47b8c69 100644 --- a/src/test-native/glExtensionsListGL2.c +++ b/src/test-native/glExtensionsListGL2.c @@ -77,6 +77,8 @@ void useGL(Display *dpy, Window win, GLXContext ctx, int width, int height) glXMakeCurrent(dpy, win, ctx); fprintf(stderr, "GL_VENDOR: %s\n", glGetString(GL_VENDOR)); + fprintf(stderr, "GL_VERSION: %s\n", glGetString(GL_VERSION)); + fprintf(stderr, "GL_RENDERER: %s\n", glGetString(GL_RENDERER)); glGetIntegerv(GL_NUM_EXTENSIONS, &n); fprintf(stderr, "GL_NUM_EXTENSIONS: %d\n", n); |