Fixed legacy gluNextContour impact on gluTessEndContour.

This commit is contained in:
Gareth Hughes 1999-09-14 05:37:58 +00:00
parent 49e0bc42e2
commit 77dcf82d81
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $Id: tess.c,v 1.4 1999/09/13 22:20:13 gareth Exp $ */
/* $Id: tess.c,v 1.5 1999/09/14 05:37:58 gareth Exp $ */
/*
* Mesa 3-D graphics library
@ -26,6 +26,9 @@
/*
* $Log: tess.c,v $
* Revision 1.5 1999/09/14 05:37:58 gareth
* Fixed legacy gluNextContour impact on gluTessEndContour.
*
* Revision 1.4 1999/09/13 22:20:13 gareth
* Fixed file headers. Tracking down macro bugs.
*
@ -290,6 +293,10 @@ void GLAPIENTRY gluTessEndContour( GLUtesselator *tobj )
{
inspect_current_contour( tobj );
}
else
{
delete_current_contour( tobj );
}
cleanup:
return;