From efdb7799d31b33ce82f9fdedf43ae17bd68f5c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= Date: Sat, 24 Jan 2009 16:47:50 +0000 Subject: progs: Fix isosurf. --- progs/demos/isosurf.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'progs/demos/isosurf.c') diff --git a/progs/demos/isosurf.c b/progs/demos/isosurf.c index e2ff6be..393741c 100644 --- a/progs/demos/isosurf.c +++ b/progs/demos/isosurf.c @@ -1033,7 +1033,6 @@ static GLint Args(int argc, char **argv) int main(int argc, char **argv) { GLenum type; - char *extensions; GLuint arg_mode = Args(argc, argv); @@ -1052,19 +1051,18 @@ int main(int argc, char **argv) glutInitDisplayMode(type); if (glutCreateWindow("Isosurface") <= 0) { - glewInit(); exit(0); } - /* Make sure server supports the vertex array extension */ - extensions = (char *) glGetString( GL_EXTENSIONS ); + glewInit(); - if (!strstr( extensions, "GL_EXT_vertex_array" )) + /* Make sure server supports the vertex array extension */ + if (!GLEW_EXT_vertex_array) { printf("Vertex arrays not supported by this renderer\n"); allowed &= ~(LOCKED|DRAW_ARRAYS|DRAW_ELTS|ARRAY_ELT); } - else if (!strstr( extensions, "GL_EXT_compiled_vertex_array" )) + else if (!GLEW_EXT_compiled_vertex_array) { printf("Compiled vertex arrays not supported by this renderer\n"); allowed &= ~LOCKED; -- cgit v1.1