projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02de45d
)
updated version test
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 28 Jan 2003 15:31:35 +0000
(15:31 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 28 Jan 2003 15:31:35 +0000
(15:31 +0000)
progs/tests/cva.c
patch
|
blob
|
history
diff --git
a/progs/tests/cva.c
b/progs/tests/cva.c
index c15f3bd24129e523aacbb87995b52a769b4384c9..eff35048f3c04b89d71e3020d96289535dc9d510 100644
(file)
--- a/
progs/tests/cva.c
+++ b/
progs/tests/cva.c
@@
-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 );
}