summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-05-23 23:21:00 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-05-23 23:21:00 +0000
commit4d5984444e10c950e665c6c42bf366bd4315cfff (patch)
treea4852083e101d6d09c948863d875663057b653b8 /progs
parent90fbef490e0f5b66705d0a407549a60d6840bbc6 (diff)
set default window pos
Diffstat (limited to 'progs')
-rw-r--r--progs/demos/multiarb.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/progs/demos/multiarb.c b/progs/demos/multiarb.c
index 6650f28c3e9..18d6c01a723 100644
--- a/progs/demos/multiarb.c
+++ b/progs/demos/multiarb.c
@@ -1,4 +1,4 @@
-/* $Id: multiarb.c,v 1.5 2000/02/02 17:31:45 brianp Exp $ */
+/* $Id: multiarb.c,v 1.6 2000/05/23 23:21:00 brianp Exp $ */
/*
* GL_ARB_multitexture demo
@@ -12,6 +12,9 @@
/*
* $Log: multiarb.c,v $
+ * Revision 1.6 2000/05/23 23:21:00 brianp
+ * set default window pos
+ *
* Revision 1.5 2000/02/02 17:31:45 brianp
* changed > to >=
*
@@ -319,6 +322,7 @@ int main( int argc, char *argv[] )
{
glutInit( &argc, argv );
glutInitWindowSize( 300, 300 );
+ glutInitWindowPosition( 0, 0 );
glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE );
glutCreateWindow(argv[0] );