summaryrefslogtreecommitdiff
path: root/progs/xdemos/vtest.c
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2010-03-15 15:24:38 -0400
committerZack Rusin <zackr@vmware.com>2010-03-15 15:24:38 -0400
commit275c4bd3643d773210780cb8d578ca84f2604684 (patch)
tree8266edc39d4253ac0f2a0ecd41f560f3d815bb5c /progs/xdemos/vtest.c
parentc5c5cd7132e18f4aad8e73d8ee879f8823c4c1e7 (diff)
parentd0b35352ed27b1e66785c45ee95a352ed06b47ce (diff)
Merge remote branch 'origin/master' into gallium_draw_llvm
Diffstat (limited to 'progs/xdemos/vtest.c')
-rw-r--r--progs/xdemos/vtest.c82
1 files changed, 0 insertions, 82 deletions
diff --git a/progs/xdemos/vtest.c b/progs/xdemos/vtest.c
deleted file mode 100644
index e322fbc5c8..0000000000
--- a/progs/xdemos/vtest.c
+++ /dev/null
@@ -1,82 +0,0 @@
-
-/*
- * Test SVGA/Mesa interface in 32K color mode.
- *
- * Compile with: gcc vtest.c -I../include -L../lib -lMesaGL -lX11 -lXext
- * -lvga -lm -o vtest
- *
- * This program is in the public domain.
- * Brian Paul, January 1996
- */
-
-
-
-#include <vga.h>
-#include "GL/svgamesa.h"
-#include "GL/gl.h"
-
-
-SVGAMesaContext vmc;
-
-
-
-void setup( void )
-{
- vga_init();
-
- vga_setmode(G800x600x32K);
-/* gl_setcontextvga(G800x600x32K);*/
-
- vmc = SVGAMesaCreateContext( GL_FALSE ); /* single buffered */
- SVGAMesaMakeCurrent( vmc );
-}
-
-
-void test( void )
-{
- glMatrixMode(GL_PROJECTION);
- glLoadIdentity();
- glOrtho( -1.0, 1.0, -1.0, 1.0, -1.0, 1.0 );
- glMatrixMode(GL_MODELVIEW);
-
- glClear( GL_COLOR_BUFFER_BIT );
-
- glBegin( GL_LINES );
- glColor3f( 1.0, 0.0, 0.0 );
- glVertex2f( -0.5, 0.5 );
- glVertex2f( 0.5, 0.5 );
- glColor3f( 0.0, 1.0, 0.0 );
- glVertex2f( -0.5, 0.25 );
- glVertex2f( 0.5, 0.25 );
- glColor3f( 0.0, 0.0, 1.0 );
- glVertex2f( -0.5, 0.0 );
- glVertex2f( 0.5, 0.0 );
- glEnd();
-
- glBegin( GL_POLYGON );
- glColor3f( 1.0, 0.0, 0.0 );
- glVertex2f( 0.0, 0.7 );
- glColor3f( 0.0, 1.0, 0.0 );
- glVertex2f( -0.5, -0.5 );
- glColor3f( 0.0, 0.0, 1.0 );
- glVertex2f( 0.5, -0.5 );
- glEnd();
-
- sleep(3);
-}
-
-void end( void )
-{
- SVGAMesaDestroyContext( vmc );
-
- vga_setmode( TEXT );
-}
-
-
-int main( int argc, char *argv[] )
-{
- setup();
- test();
- end();
- return 0;
-}