Home | History | Annotate | Download | only in libtess

Lines Matching defs:windingRule

117   tess->windingRule = GLU_TESS_WINDING_ODD;
207 GLenum windingRule;
216 windingRule = (GLenum) value;
217 if( windingRule != value ) break; /* not an integer */
219 switch( windingRule ) {
225 tess->windingRule = windingRule;
253 assert(tess->windingRule == GLU_TESS_WINDING_ODD ||
254 tess->windingRule == GLU_TESS_WINDING_NONZERO ||
255 tess->windingRule == GLU_TESS_WINDING_POSITIVE ||
256 tess->windingRule == GLU_TESS_WINDING_NEGATIVE ||
257 tess->windingRule == GLU_TESS_WINDING_ABS_GEQ_TWO);
258 *value= tess->windingRule;
541 * to the polygon, according to the rule given by tess->windingRule.