Browse Source

updated version test

tags/vtx-0-2-21112003-freeze
Brian Paul 23 years ago
parent
commit
35d03a6b3e
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      progs/tests/cva.c

+ 4
- 2
progs/tests/cva.c View File

@@ -1,4 +1,4 @@
/* $Id: cva.c,v 1.4 2002/01/16 01:03:25 kschultz Exp $ */
/* $Id: cva.c,v 1.5 2003/01/28 15:31:35 brianp Exp $ */

/*
* Trivial CVA test, good for testing driver fastpaths (especially
@@ -133,7 +133,9 @@ int main( int argc, char **argv )
*/
string = (char *) glGetString( GL_VERSION );

if ( (!strstr( string, "1.2" ))&&(!strstr(string,"1.3"))) {
if ( !strstr(string, "1.2") &&
!strstr(string, "1.3") &&
!strstr(string, "1.4")) {
fprintf( stderr, "This program requires OpenGL 1.2 vertex arrays.\n" );
exit( -1 );
}

Loading…
Cancel
Save