From cf89b89be8f6d9f00b8dd571ad0b80af1b7c12a1 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 19 Jul 2000 23:57:24 +0000 Subject: [PATCH] call glutInit() --- progs/demos/texobj.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/progs/demos/texobj.c b/progs/demos/texobj.c index 5fc8e82beeb..2c0dbc18267 100644 --- a/progs/demos/texobj.c +++ b/progs/demos/texobj.c @@ -1,4 +1,4 @@ -/* $Id: texobj.c,v 1.4 2000/03/23 16:57:14 brianp Exp $ */ +/* $Id: texobj.c,v 1.5 2000/07/19 23:57:24 brianp Exp $ */ /* * Example of using the 1.1 texture object functions. @@ -240,6 +240,7 @@ static void init( void ) int main( int argc, char *argv[] ) { + glutInit(&argc, argv); glutInitWindowPosition(0, 0); glutInitWindowSize(300, 300); glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE );