1 /* gltest - small OpenGL tearing test program
2 * Copyright (C) 2012-2013 Ralf Jung <post@ralfj.de>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #include "glxbackend.h"
24 #include <GL/glxext.h>
27 #if !defined(CON_GL1) && !defined(CON_GL3)
28 #error "Valid GL contexts for GLX are: GL1, GL3"
31 // attributes for a double buffered framebuffer in RGBA format with at least 4 bits per color
32 static int configAttribs[] =
34 GLX_RENDER_TYPE, GLX_RGBA_BIT,
35 GLX_DOUBLEBUFFER, True,
43 // attributes for a GL3 context
44 static int contextAttribs[] =
46 GLX_CONTEXT_MAJOR_VERSION_ARB, 3,
47 GLX_CONTEXT_MINOR_VERSION_ARB, 0,
48 GLX_CONTEXT_FLAGS_ARB, GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB,
53 VisualID GLXBackend::initialize(Display *display)
55 if (this->display == NULL) { // this implies that the context is also unitialized
56 this->display = display;
57 // debugging: show version information
58 int glxMajor, glxMinor;
59 glXQueryVersion(display, &glxMajor, &glxMinor);
60 printf("Using GLX version: %d.%d\n", glxMajor, glxMinor);
61 if (glxMajor == 1 && glxMinor < 3) {
62 // glXChooseFBConfig and glXCreateNewContext require GLX 1.3
63 die("Need at least GLX 1.3 to function properly\n");
65 // check for extension-based functions
66 funSwapIntervalMesa = (PFNGLXSWAPINTERVALMESAPROC)resolveGLXFunction("GLX_MESA_swap_control", "glXSwapIntervalMESA");
67 funSwapIntervalExt = (PFNGLXSWAPINTERVALEXTPROC)resolveGLXFunction("GLX_EXT_swap_control", "glXSwapIntervalEXT");
68 funCreateContextAttribsARB = (PFNGLXCREATECONTEXTATTRIBSARBPROC)resolveGLXFunction("GLX_ARB_create_context", "glXCreateContextAttribsARB");
69 // get the first usable framebuffer configuration
71 GLXFBConfig *configs = glXChooseFBConfig(display, DefaultScreen(display), configAttribs, &count);
73 die("Failed to choose framebuffer configuration\n");
79 XVisualInfo *vi = glXGetVisualFromFBConfig(display, config);
80 VisualID visualid = vi->visualid;
85 bool GLXBackend::haveGLXExtension(const std::string &name)
87 assert(display != NULL);
88 std::string extensions = glXQueryExtensionsString(display, DefaultScreen(display));
89 return (std::string(" "+extensions+" ").find(" "+name+" ") != std::string::npos);
92 T_proc GLXBackend::resolveGLXFunction(const char *extension, const char *function)
94 if (!haveGLXExtension(extension)) return NULL;
95 T_proc f = glXGetProcAddress((const GLubyte*)function);
97 printf("%s is supported, using it for %s\n", extension, function);
101 void GLXBackend::createContext(Window window)
103 assert(display != NULL && context == None);
104 this->window = window;
105 // create context with that window
107 context = glXCreateNewContext(display, config, GLX_RGBA_TYPE, NULL, GL_TRUE);
109 if (!funCreateContextAttribsARB) {
110 die("Cannot create GL3 context: GLX_ARB_create_context not supported\n");
112 context = funCreateContextAttribsARB(display, config, NULL, GL_TRUE, contextAttribs);
115 die("Error creating context\n");
117 glXMakeCurrent(display, window, context);
118 assert(glXIsDirect(display, context));
119 printf("Using GL version: %s\n", glGetString(GL_VERSION));
120 // initialise GL utilities
121 resolveFunctionPointers((T_glGetProcAddress)glXGetProcAddress);
124 GLXBackend::~GLXBackend()
126 if (display != NULL) {
127 if (context != None) {
128 glXMakeCurrent(display, None, NULL);
129 glXDestroyContext(display, context);
134 void GLXBackend::swapBuffers() const
136 assert(context != None); // this implies the display is also initialized
137 glXSwapBuffers(display, window);
140 void GLXBackend::setSwapInterval(int i) const
142 assert(context != None);
143 // check if swap interval value is supported
145 die("Cannot set swap interval to %d, must not be negative\n", i);
148 if (funSwapIntervalExt)
149 funSwapIntervalExt(display, window, i);
150 else if (funSwapIntervalMesa)
151 funSwapIntervalMesa(i);
153 die("At least one of GLX_EXT_swap_control, GLX_MESA_swap_control must be supported by the system\n");