4 * GL-based support functions
6 * Copyright (c) 2005 Nathan Keynes.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
21 #include <glib/gstrfuncs.h>
22 #include "pvr2/glutil.h"
24 gboolean isGLSecondaryColorSupported()
26 return isGLExtensionSupported("GL_EXT_secondary_color");
29 gboolean isGLVertexBufferSupported()
31 return isGLExtensionSupported("GL_ARB_vertex_buffer_object");
34 gboolean isGLPixelBufferSupported()
36 return isGLExtensionSupported("GL_ARB_pixel_buffer_object");
39 gboolean isGLMirroredTextureSupported()
41 return isGLExtensionSupported("GL_ARB_texture_mirrored_repeat");
44 gboolean isOpenGLES2()
46 const char *str = glGetString(GL_VERSION);
47 if( strncmp(str, "OpenGL ES 2.", 12) == 0 ) {
53 * Check if there's at least 2 texture units
55 gboolean isGLMultitextureSupported()
57 if( !isGLExtensionSupported("GL_ARB_multitexture") )
61 #if defined(GL_MAX_TEXTURE_UNITS)
62 glGetIntegerv(GL_MAX_TEXTURE_UNITS, &units);
63 #elif defined(GL_MAX_TEXTURE_IMAGE_UNITS)
64 glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &units);
69 gboolean isGLVertexRangeSupported()
71 return isGLExtensionSupported("GL_APPLE_vertex_array_range") ||
72 isGLExtensionSupported("GL_NV_vertex_array_range");
76 * Test if a specific extension is supported. From opengl.org
77 * @param extension extension name to check for
78 * @return TRUE if supported, otherwise FALSE.
80 gboolean isGLExtensionSupported( const char *extension )
82 const GLubyte *extensions = NULL;
84 GLubyte *where, *terminator;
86 /* Extension names should not have spaces. */
87 where = (GLubyte *) strchr(extension, ' ');
88 if (where || *extension == '\0')
90 extensions = glGetString(GL_EXTENSIONS);
91 if( extensions == NULL ) {
92 /* No GL available, so we're pretty sure the extension isn't
93 * available either. */
96 /* It takes a bit of care to be fool-proof about parsing the
97 OpenGL extensions string. Don't be fooled by sub-strings,
101 where = (GLubyte *) strstr((const char *) start, extension);
104 terminator = where + strlen(extension);
105 if (where == start || *(where - 1) == ' ')
106 if (*terminator == ' ' || *terminator == '\0')
113 int compare_charp( const void *a, const void *b )
115 const char **ca = (const char **)a;
116 const char **cb = (const char **)b;
117 return strcmp(*ca, *cb);
120 #define DEFAULT_TERMINAL_COLUMNS 80
121 #define DEFAULT_COLUMN_WIDTH 34
123 int glGetMaxColourAttachments()
125 #ifdef GL_MAX_COLOR_ATTACHMENTS
127 glGetIntegerv(GL_MAX_COLOR_ATTACHMENTS, &result);
136 * Define an orthographic projection matrix
137 * Note: row-major order
139 void defineOrthoMatrix( GLfloat *matrix, GLfloat width, GLfloat height, GLfloat znear, GLfloat zfar )
147 matrix[5] = -2/height;
153 matrix[10]= -2/(zfar-znear);
158 matrix[14]= -(zfar+znear)/(zfar-znear);
163 * Format a GL extension list (or other space-separated string) nicely, and
164 * print to the given output stream.
167 void fprint_extensions( FILE *out, const char *extensions )
169 unsigned int i, j, count, maxlen = DEFAULT_COLUMN_WIDTH, columns, per_column, terminal_columns;
170 const char *terminal_columns_str = getenv("COLUMNS");
171 if( terminal_columns_str == NULL || (terminal_columns = strtol(terminal_columns_str,0,10)) == 0 )
172 terminal_columns = DEFAULT_TERMINAL_COLUMNS;
174 if( extensions == NULL || extensions[0] == '\0' )
177 gchar *ext_dup = g_strdup(extensions);
178 gchar **ext_split = g_strsplit(g_strstrip(extensions), " ", 0);
179 for( count = 0; ext_split[count] != NULL; count++ ) {
180 unsigned len = strlen(ext_split[count]);
185 columns = terminal_columns / (maxlen+2);
188 per_column = (count+columns-1) / columns;
190 qsort(ext_split, count, sizeof(gchar *), compare_charp);
192 for( i=0; i<per_column; i++ ) {
193 for( j=0; j<columns; j++ ) {
194 unsigned idx = i + (j*per_column);
196 fprintf( out, " %-*s", maxlen, ext_split[idx] );
198 fprintf( out, "\n" );
200 g_strfreev(ext_split);
204 void glPrintInfo( FILE *out )
206 fprintf( out, "GL Vendor: %s\n", glGetString(GL_VENDOR) );
207 fprintf( out, "GL Renderer: %s\n", glGetString(GL_RENDERER) );
208 fprintf( out, "GL Version: %s\n", glGetString(GL_VERSION) );
209 if( glsl_is_supported() ) {
210 const char * version = glsl_get_version();
211 fprintf( out, "SL Version: %s\n", version );
214 fprintf( out, "GL Extensions:\n" );
216 fprint_extensions( out, (const gchar *)glGetString(GL_EXTENSIONS) );
217 if( display_driver && display_driver->print_info ) {
219 display_driver->print_info(out);
223 gboolean gl_check_error(const char *context)
225 GLint err = glGetError();
229 case GL_INVALID_ENUM: s = "Invalid enum"; break;
230 case GL_INVALID_VALUE: s = "Invalid value"; break;
231 case GL_INVALID_OPERATION: s = "Invalid operation"; break;
232 #ifdef GL_STACK_OVERFLOW
233 case GL_STACK_OVERFLOW: s = "Stack overflow"; break;
235 #ifdef GL_STACK_UNDERFLOW
236 case GL_STACK_UNDERFLOW: s = "Stack underflow"; break;
238 case GL_OUT_OF_MEMORY: s = "Out of memory"; break;
239 default: s = "Unknown error"; break;
242 WARN( "%s: GL error: %x (%s)\n", context, err, s );
244 WARN( "GL error: %x (%s)\n", err, s );
.