added gluTessNormal() dummy function
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 15 Oct 2002 14:45:19 +0000 (14:45 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 15 Oct 2002 14:45:19 +0000 (14:45 +0000)
src/glu/mesa/tess.c

index 2725914..5d24bdb 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tess.c,v 1.26 2001/03/20 17:56:10 brianp Exp $ */
+/* $Id: tess.c,v 1.27 2002/10/15 14:45:19 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -315,3 +315,14 @@ delete_contours(GLUtriangulatorObj * tobj)
    tobj->contours = tobj->last_contour = NULL;
    tobj->contour_cnt = 0;
 }
+
+
+void GLAPIENTRY
+gluTessNormal(GLUtesselator *tess, GLdouble valueX, GLdouble valueY, GLdouble valueZ)
+{
+   /* dummy function */
+   (void) tess;
+   (void) valueX;
+   (void) valueY;
+   (void) valueZ;
+}