summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorGareth Hughes <gareth@valinux.com>2000-11-30 03:06:56 +0000
committerGareth Hughes <gareth@valinux.com>2000-11-30 03:06:56 +0000
commit785390137287cca1fd6ae61a4914cb71854396a8 (patch)
tree87587cc6834fd55f754d5cd91094bdd69e09f1b7 /progs
parent28861b192f8c83919676466b04aca89c618ba300 (diff)
Enable double-buffering, count not even multiple of three.
Diffstat (limited to 'progs')
-rw-r--r--progs/tests/cva.c48
1 files changed, 44 insertions, 4 deletions
diff --git a/progs/tests/cva.c b/progs/tests/cva.c
index 380f198563b..c6292f490f5 100644
--- a/progs/tests/cva.c
+++ b/progs/tests/cva.c
@@ -1,4 +1,4 @@
-/* $Id: cva.c,v 1.2 2000/11/03 00:09:31 gareth Exp $ */
+/* $Id: cva.c,v 1.3 2000/11/30 03:06:56 gareth Exp $ */
/*
* Trivial CVA test, good for testing driver fastpaths (especially
@@ -19,17 +19,20 @@ GLfloat verts[][4] = {
{ -0.5, -0.5, -2.0, 0.0 },
{ 0.5, -0.5, -2.0, 0.0 },
{ -0.5, 0.5, -2.0, 0.0 },
+ { 0.5, 0.5, -2.0, 0.0 },
};
GLubyte color[][4] = {
{ 0xff, 0x00, 0x00, 0x00 },
{ 0x00, 0xff, 0x00, 0x00 },
{ 0x00, 0x00, 0xff, 0x00 },
+ { 0xff, 0xff, 0xff, 0x00 },
};
-GLuint indices[] = { 0, 1, 2 };
+GLuint indices[] = { 0, 1, 2, 3 };
GLboolean compiled = GL_TRUE;
+GLboolean doubleBuffer = GL_TRUE;
void init( void )
@@ -37,6 +40,10 @@ void init( void )
glClearColor( 0.0, 0.0, 0.0, 0.0 );
glShadeModel( GL_SMOOTH );
+ glFrontFace( GL_CCW );
+ glCullFace( GL_BACK );
+ glEnable( GL_CULL_FACE );
+
glEnable( GL_DEPTH_TEST );
glEnableClientState( GL_VERTEX_ARRAY );
@@ -53,7 +60,7 @@ void init( void )
#ifdef GL_EXT_compiled_vertex_array
if ( compiled ) {
- glLockArraysEXT( 0, 3 );
+ glLockArraysEXT( 0, 4 );
}
#endif
}
@@ -65,6 +72,9 @@ void display( void )
glDrawElements( GL_TRIANGLES, 3, GL_UNSIGNED_INT, indices );
glFlush();
+ if ( doubleBuffer ) {
+ glutSwapBuffers();
+ }
}
void keyboard( unsigned char key, int x, int y )
@@ -74,14 +84,44 @@ void keyboard( unsigned char key, int x, int y )
exit( 0 );
break;
}
+
+ glutPostRedisplay();
+}
+
+GLboolean args( int argc, char **argv )
+{
+ GLint i;
+
+ doubleBuffer = GL_TRUE;
+
+ for ( i = 1 ; i < argc ; i++ ) {
+ if ( strcmp( argv[i], "-sb" ) == 0 ) {
+ doubleBuffer = GL_FALSE;
+ } else if ( strcmp( argv[i], "-db" ) == 0 ) {
+ doubleBuffer = GL_TRUE;
+ } else {
+ fprintf( stderr, "%s (Bad option).\n", argv[i] );
+ return GL_FALSE;
+ }
+ }
+ return GL_TRUE;
}
int main( int argc, char **argv )
{
+ GLenum type;
char *string;
glutInit( &argc, argv );
- glutInitDisplayMode( GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH );
+
+ if ( args( argc, argv ) == GL_FALSE ) {
+ exit( 1 );
+ }
+
+ type = GLUT_RGB | GLUT_DEPTH;
+ type |= ( doubleBuffer ) ? GLUT_DOUBLE : GLUT_SINGLE;
+
+ glutInitDisplayMode( type );
glutInitWindowSize( 250, 250 );
glutInitWindowPosition( 100, 100 );
glutCreateWindow( "CVA Test" );