From: Brian Paul Date: Tue, 15 Oct 2002 14:45:19 +0000 (+0000) Subject: added gluTessNormal() dummy function X-Git-Tag: 062012170305~26263 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dfedb8b78ed13eed0705dbd86e5906f610730537;p=profile%2Fivi%2Fmesa.git added gluTessNormal() dummy function --- diff --git a/src/glu/mesa/tess.c b/src/glu/mesa/tess.c index 2725914..5d24bdb 100644 --- a/src/glu/mesa/tess.c +++ b/src/glu/mesa/tess.c @@ -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; +}