1.1 --- a/src/pvr2/glutil.c Fri Mar 28 12:32:25 2008 +0000
1.2 +++ b/src/pvr2/glutil.c Sat Apr 19 02:39:37 2008 +0000
1.5 #include "pvr2/glutil.h"
1.7 +gboolean isGLSecondaryColorSupported()
1.9 + return isGLExtensionSupported("GL_EXT_secondary_color");
1.12 +gboolean isGLVertexBufferSupported()
1.14 + return isGLExtensionSupported("GL_ARB_vertex_buffer_object");
1.17 +gboolean isGLPixelBufferSupported()
1.19 + return isGLExtensionSupported("GL_ARB_pixel_buffer_object");
1.22 +gboolean isGLMirroredTextureSupported()
1.24 + return isGLExtensionSupported("GL_ARB_texture_mirrored_repeat");
1.28 * Test if a specific extension is supported. From opengl.org
1.29 * @param extension extension name to check for