X-Git-Url: https://git.ralfj.de/gltest.git/blobdiff_plain/abe5b74c820514f9f5896309e0e192569db35651..867982470c8f197aaa6364da1c52d530a2023dec:/glxbackend.cpp diff --git a/glxbackend.cpp b/glxbackend.cpp index e40e90c..2023954 100644 --- a/glxbackend.cpp +++ b/glxbackend.cpp @@ -21,7 +21,6 @@ #include #include -#include #include #include @@ -61,8 +60,7 @@ VisualID GLXBackend::initialize(Display *display) printf("Using GLX version: %d.%d\n", glxMajor, glxMinor); if (glxMajor < 1 || (glxMajor == 1 && glxMinor < 3)) { // glXChooseFBConfig and glXCreateNewContext require GLX 1.3 - fprintf(stderr, "Need at least GLX 1.3 to function properly\n"); - exit(1); + die("Need at least GLX 1.3 to function properly\n"); } // check for extension-based functions funSwapIntervalMesa = (PFNGLXSWAPINTERVALMESAPROC)resolveGLXFunction("GLX_MESA_swap_control", "glXSwapIntervalMESA"); @@ -72,8 +70,7 @@ VisualID GLXBackend::initialize(Display *display) int count = 0; GLXFBConfig *configs = glXChooseFBConfig(display, DefaultScreen(display), configAttribs, &count); if (count < 1) { - fprintf(stderr, "Failed to choose framebuffer configuration\n"); - exit(1); + die("Failed to choose framebuffer configuration\n"); } config = configs[0]; XFree(configs); @@ -110,14 +107,12 @@ void GLXBackend::createContext(Window window) context = glXCreateNewContext(display, config, GLX_RGBA_TYPE, NULL, GL_TRUE); #else if (!funCreateContextAttribsARB) { - fprintf(stderr, "Cannot create GL3 context: GLX_ARB_create_context not supported\n"); - exit(1); + die("Cannot create GL3 context: GLX_ARB_create_context not supported\n"); } context = funCreateContextAttribsARB(display, config, NULL, GL_TRUE, contextAttribs); #endif if (!context) { - fprintf(stderr, "Error creating context\n"); - exit(1); + die("Error creating context\n"); } glXMakeCurrent(display, window, context); assert(glXIsDirect(display, context)); @@ -147,8 +142,7 @@ void GLXBackend::setSwapInterval(int i) const assert(context != None); // check if swap interval value is supported if (i < 0) { - fprintf(stderr, "Cannot set swap interval to %d, must not be negative\n", i); - exit(1); + die("Cannot set swap interval to %d, must not be negative\n", i); } // set it if (funSwapIntervalExt) @@ -156,7 +150,6 @@ void GLXBackend::setSwapInterval(int i) const else if (funSwapIntervalMesa) funSwapIntervalMesa(i); else { - fprintf(stderr, "At least one of GLX_EXT_swap_control, GLX_MESA_swap_control must be supported by the system\n"); - abort(); + die("At least one of GLX_EXT_swap_control, GLX_MESA_swap_control must be supported by the system\n"); } }