X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fxlock-gl.c;h=8250e79cd125eff60cf35daab9424d6357ba0e9b;hb=de041722414a2e31c1c04caa10aaec9d6952e9b4;hp=d8cfd7a6bc40252ca213827669a3ab0753f791ef;hpb=6bb727f03bff0389fbb1349d7df4c9d8d7532959;p=xscreensaver diff --git a/hacks/glx/xlock-gl.c b/hacks/glx/xlock-gl.c index d8cfd7a6..8250e79c 100644 --- a/hacks/glx/xlock-gl.c +++ b/hacks/glx/xlock-gl.c @@ -1,5 +1,5 @@ -/* xlock-gc.c --- xscreensaver compatibility layer for xlockmore GL modules. - * xscreensaver, Copyright (c) 1997, 1998 Jamie Zawinski +/* xlock-gl.c --- xscreensaver compatibility layer for xlockmore GL modules. + * xscreensaver, Copyright (c) 1997, 1998, 1999 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -11,7 +11,7 @@ * * This file, along with xlockmore.h, make it possible to compile an xlockmore * GL module into a standalone program, and thus use it with xscreensaver. - * By Jamie Zawinski on 31-May-97. + * By Jamie Zawinski on 31-May-97. */ #include @@ -99,82 +99,40 @@ init_GL(ModeInfo * mi) } -Visual * -get_gl_visual (Screen *screen, char *name, char *class) -{ - char *string = get_string_resource (name, class); - XVisualInfo *vi = 0; - Bool done_once = False; - - AGAIN: - if (!string || !*string || - !strcmp (string, "best") || - !strcmp (string, "color") || - !strcmp (string, "default")) - { - Display *dpy = DisplayOfScreen (screen); - int screen_num = screen_number (screen); - int attrs[20]; - int i = 0; - Bool dbuf_p = !get_boolean_resource ("noBuffer", "NoBuffer"); - - done_once = True; - - attrs[i++] = GLX_RGBA; - attrs[i++] = GLX_RED_SIZE; attrs[i++] = 1; - attrs[i++] = GLX_GREEN_SIZE; attrs[i++] = 1; - attrs[i++] = GLX_BLUE_SIZE; attrs[i++] = 1; - attrs[i++] = GLX_DEPTH_SIZE; attrs[i++] = 1; - if (dbuf_p) - attrs[i++] = GLX_DOUBLEBUFFER; - attrs[i++] = 0; - - vi = glXChooseVisual (dpy, screen_num, attrs); - if (vi) goto DONE; - - /* Try without double-buffering. */ - attrs[i - 1] = 0; - vi = glXChooseVisual (dpy, screen_num, attrs); - if (vi) goto DONE; - - /* Try mono. */ - i = 0; - if (dbuf_p) - attrs[i++] = GLX_DOUBLEBUFFER; - attrs[i++] = 0; - vi = glXChooseVisual (dpy, screen_num, attrs); - if (vi) goto DONE; - - /* Try mono without double-buffering. */ - attrs[0] = 0; - vi = glXChooseVisual (dpy, screen_num, attrs); - } + - DONE: - { - Visual *v; - if (vi) - { - v = vi->visual; - XFree (vi); - } - else - { - v = get_visual (screen, string, False, True); - if (!v) - { - if (done_once) - v = DefaultVisualOfScreen (screen); - else - { - free (string); - string = 0; - goto AGAIN; - } - } - } +/* clear away any lingering error codes */ +void +clear_gl_error (void) +{ + while (glGetError() != GL_NO_ERROR) + ; +} - free (string); - return v; +/* report a GL error. */ +void +check_gl_error (const char *type) +{ + char buf[100]; + GLenum i; + const char *e; + switch ((i = glGetError())) { + case GL_NO_ERROR: return; + case GL_INVALID_ENUM: e = "invalid enum"; break; + case GL_INVALID_VALUE: e = "invalid value"; break; + case GL_INVALID_OPERATION: e = "invalid operation"; break; + case GL_STACK_OVERFLOW: e = "stack overflow"; break; + case GL_STACK_UNDERFLOW: e = "stack underflow"; break; + case GL_OUT_OF_MEMORY: e = "out of memory"; break; +#ifdef GL_TABLE_TOO_LARGE_EXT + case GL_TABLE_TOO_LARGE_EXT: e = "table too large"; break; +#endif +#ifdef GL_TEXTURE_TOO_LARGE_EXT + case GL_TEXTURE_TOO_LARGE_EXT: e = "texture too large"; break; +#endif + default: + e = buf; sprintf (buf, "unknown error %d", (int) i); break; } + fprintf (stderr, "%s: %s error: %s\n", progname, type, e); + exit (1); }