Searched refs:tobj (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/mesa-demos/dist/src/redbook/
H A Dtess.c122 GLUtesselator *tobj; local in function:init
140 tobj = gluNewTess();
141 gluTessCallback(tobj, GLU_TESS_VERTEX, &glVertex3dv);
142 gluTessCallback(tobj, GLU_TESS_BEGIN, &beginCallback);
143 gluTessCallback(tobj, GLU_TESS_END, &endCallback);
144 gluTessCallback(tobj, GLU_TESS_ERROR, &errorCallback);
149 gluTessBeginPolygon(tobj, NULL);
150 gluTessBeginContour(tobj);
151 gluTessVertex(tobj, rect[0], rect[0]);
152 gluTessVertex(tobj, rec
[all...]
H A Dtesswind.c53 GLUtesselator *tobj; variable in typeref:typename:GLUtesselator *
87 gluTessProperty(tobj, GLU_TESS_WINDING_RULE,
91 gluTessBeginPolygon(tobj, NULL);
92 gluTessBeginContour(tobj);
94 gluTessVertex(tobj, rects[i], rects[i]);
95 gluTessEndContour(tobj);
96 gluTessBeginContour(tobj);
98 gluTessVertex(tobj, rects[i], rects[i]);
99 gluTessEndContour(tobj);
100 gluTessBeginContour(tobj);
[all...]
/xsrc/external/mit/mesa-demos/dist/src/demos/
H A Dtessdemo.c161 GLUtesselator *tobj; local in function:tesse
167 tobj = gluNewTess();
169 if ( tobj != NULL ) {
170 gluTessNormal( tobj, 0.0, 0.0, 1.0 );
171 gluTessCallback( tobj, GLU_TESS_BEGIN, glBegin );
172 gluTessCallback( tobj, GLU_TESS_VERTEX, glVertex2fv );
173 gluTessCallback( tobj, GLU_TESS_END, glEnd );
174 gluTessCallback( tobj, GLU_TESS_ERROR, error_callback );
175 gluTessCallback( tobj, GLU_TESS_COMBINE, combine_callback );
178 gluBeginPolygon( tobj );
[all...]
H A Ddinoshade.c231 static GLUtriangulatorObj *tobj = NULL; local in function:extrudeSolidFromPolygon
236 if (tobj == NULL) {
237 tobj = gluNewTess(); /* create and initialize a GLU
239 gluTessCallback(tobj, GLU_BEGIN, glBegin);
240 gluTessCallback(tobj, GLU_VERTEX, glVertex2fv); /* semi-tricky */
241 gluTessCallback(tobj, GLU_END, glEnd);
246 gluBeginPolygon(tobj);
251 gluTessVertex(tobj, vertex, data[i]);
253 gluEndPolygon(tobj);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tex_copy.c41 struct radeon_tex_obj *tobj,
75 radeon_validate_texture_miptree(ctx, &tobj->base.Sampler, &tobj->base);
40 do_copy_texsubimage(struct gl_context * ctx,struct radeon_tex_obj * tobj,radeon_texture_image * timg,GLint dstx,GLint dsty,struct radeon_renderbuffer * rrb,GLint x,GLint y,GLsizei width,GLsizei height) argument
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tex_copy.c41 struct radeon_tex_obj *tobj,
75 radeon_validate_texture_miptree(ctx, &tobj->base.Sampler, &tobj->base);
40 do_copy_texsubimage(struct gl_context * ctx,struct radeon_tex_obj * tobj,radeon_texture_image * timg,GLint dstx,GLint dsty,struct radeon_renderbuffer * rrb,GLint x,GLint y,GLsizei width,GLsizei height) argument

Completed in 7 milliseconds