Lines Matching defs:strips
79 /** The array of triangle strips comprising the gear */
80 struct vertex_strip *strips;
81 /** The number of triangle strips comprising the gear */
165 gear->strips = calloc(gear->nstrips, sizeof (*gear->strips));
188 gear->strips[cur_strip].first = v - gear->vertices; \
193 gear->strips[cur_strip].count = _tmp - gear->strips[cur_strip].first; \
500 /* Draw the triangle strips that comprise the gear */
503 glDrawArrays(GL_TRIANGLE_STRIP, gear->strips[n].first, gear->strips[n].count);