-/* $Id: tess.c,v 1.8 1999/09/17 03:07:28 tjump Exp $ */
+/* $Id: tess.c,v 1.9 1999/09/17 06:34:46 gareth Exp $ */
/*
* Mesa 3-D graphics library
/*
* $Log: tess.c,v $
+ * Revision 1.9 1999/09/17 06:34:46 gareth
+ * Winding rule updates.
+ *
* Revision 1.8 1999/09/17 03:07:28 tjump
* Win32 build req't updates
*
#if 0
tobj->grid = NULL;
#endif
+ tobj->cvc_lists = NULL;
tobj->error = GLU_NO_ERROR;
last_vertex->coords[Y] = coords[Y];
last_vertex->coords[Z] = coords[Z];
+ last_vertex->angle = 0.0;
+ last_vertex->label = 0;
+
last_vertex->next = NULL;
last_vertex->previous = NULL;
vertex->coords[Y] = coords[Y];
vertex->coords[Z] = coords[Z];
+ vertex->angle = 0.0;
+ vertex->label = 0;
+
vertex->next = NULL;
vertex->previous = last_vertex;
-/* $Id: tess.h,v 1.7 1999/09/16 06:42:01 gareth Exp $ */
+/* $Id: tess.h,v 1.8 1999/09/17 06:31:02 gareth Exp $ */
/*
* Mesa 3-D graphics library
/*
* $Log: tess.h,v $
+ * Revision 1.8 1999/09/17 06:31:02 gareth
+ * Winding rule updates.
+ *
* Revision 1.7 1999/09/16 06:42:01 gareth
* Misc winding rule bug fixes.
*
#include "gluP.h"
#include "tess_typedefs.h"
+#include "tess_hash.h"
#include "tess_heap.h"
#if 0
#include "tess_grid.h"
tess_grid_t *grid; /* Not currently used... */
#endif
heap_t *ears;
+ hashtable_t *cvc_lists;
GLenum error;
};