summaryrefslogtreecommitdiff
path: root/progs/demos
diff options
context:
space:
mode:
authorGareth Hughes <gareth@valinux.com>2000-01-24 22:54:05 +0000
committerGareth Hughes <gareth@valinux.com>2000-01-24 22:54:05 +0000
commit2454429915c05c69a86804817c95cc5b634699af (patch)
tree76715d578a060ee1f559783a104bfb470157ba25 /progs/demos
parentd13bfbf7c6e6a730ecc4c3fdef6ddd86ab2ea846 (diff)
Removed '#if 0' from second pass.
Diffstat (limited to 'progs/demos')
-rw-r--r--progs/demos/tessdemo.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/progs/demos/tessdemo.c b/progs/demos/tessdemo.c
index 327d5a9b2f..a62f25b272 100644
--- a/progs/demos/tessdemo.c
+++ b/progs/demos/tessdemo.c
@@ -1,4 +1,4 @@
-/* $Id: tessdemo.c,v 1.4 2000/01/23 21:25:39 gareth Exp $ */
+/* $Id: tessdemo.c,v 1.5 2000/01/24 22:54:05 gareth Exp $ */
/*
* A demo of the GLU polygon tesselation functions written by Bogdan Sikorski.
@@ -14,6 +14,9 @@
/*
* $Log: tessdemo.c,v $
+ * Revision 1.5 2000/01/24 22:54:05 gareth
+ * Removed '#if 0' from second pass.
+ *
* Revision 1.4 2000/01/23 21:25:39 gareth
* Merged 3.2 updates, namely combine callback for intersecting
* contours.
@@ -258,7 +261,6 @@ void tesse( void )
gluEndPolygon( tobj );
glEndList();
-#if 0
gluTessCallback( tobj, GLU_TESS_BEGIN, begin_callback );
gluTessCallback( tobj, GLU_TESS_VERTEX, vertex_callback );
gluTessCallback( tobj, GLU_TESS_END, end_callback );
@@ -283,7 +285,6 @@ void tesse( void )
gluEndPolygon( tobj );
glEndList();
-#endif
gluDeleteTess( tobj );