diff options
author | Gareth Hughes <[email protected]> | 1999-09-10 04:32:10 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 1999-09-10 04:32:10 +0000 |
commit | f0f3815e4f93a72de339f9da7109b069dd6c90cd (patch) | |
tree | 101950f8385d0963b3f1711a0e152280f42dbeb5 /src/glu/mesa/glu.c | |
parent | 95740b2c113ced1d49d84ceecc551e3718d8d8c1 (diff) |
Fixed triangle output, recovery process termination.
Diffstat (limited to 'src/glu/mesa/glu.c')
-rw-r--r-- | src/glu/mesa/glu.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/glu/mesa/glu.c b/src/glu/mesa/glu.c index 5569ca9d49c..e9037b7614d 100644 --- a/src/glu/mesa/glu.c +++ b/src/glu/mesa/glu.c @@ -1,4 +1,4 @@ -/* $Id: glu.c,v 1.2 1999/09/10 02:03:31 gareth Exp $ */ +/* $Id: glu.c,v 1.3 1999/09/10 04:32:10 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -23,6 +23,9 @@ /* * $Log: glu.c,v $ + * Revision 1.3 1999/09/10 04:32:10 gareth + * Fixed triangle output, recovery process termination. + * * Revision 1.2 1999/09/10 02:03:31 gareth * Added GLU 1.3 tessellation (except winding rule code). * @@ -216,14 +219,14 @@ void GLAPIENTRY gluPickMatrix( GLdouble x, GLdouble y, const GLubyte* GLAPIENTRY gluErrorString( GLenum errorCode ) { static char *tess_error[] = { - "missing gluEndPolygon", "missing gluBeginPolygon", - "misoriented contour", - "vertex/edge intersection", + "missing gluBeginContour", + "missing gluEndPolygon", + "missing gluEndContour", "misoriented or self-intersecting loops", "coincident vertices", "colinear vertices", - "intersecting edges" + "FIST recovery process fatal error" }; static char *nurbs_error[] = { "spline order un-supported", |