projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d00b68
)
added gluTessNormal() dummy function
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 15 Oct 2002 14:45:19 +0000
(14:45 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 15 Oct 2002 14:45:19 +0000
(14:45 +0000)
src/glu/mesa/tess.c
patch
|
blob
|
history
diff --git
a/src/glu/mesa/tess.c
b/src/glu/mesa/tess.c
index 2725914d33a9d719fec642824cd71b2973c234bd..5d24bdb69e00cb80425fe29bf6cc9e3073d8ba44 100644
(file)
--- a/
src/glu/mesa/tess.c
+++ b/
src/glu/mesa/tess.c
@@
-1,4
+1,4
@@
-/* $Id: tess.c,v 1.2
6 2001/03/20 17:56:10
brianp Exp $ */
+/* $Id: tess.c,v 1.2
7 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;
+}