MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / glVertex2i

Function glVertex2i

engine/source/platformAndroid/AndroidGL2ES.cpp:331–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

329 glError = TEST_FOR_OPENGL_ERRORS
330}
331void glVertex2i( GLint x, GLint y)
332{
333 AssertFatal( (beginEndMode >= 0), "glVertex2i(): called outside glBegin/glEnd");
334 glVertex4f( GLfloat(x), GLfloat(y), 0.0f, 1.0f );
335 int glError;
336 glError = TEST_FOR_OPENGL_ERRORS
337}
338void glVertex3fv( const F32 * pv )
339{
340 AssertFatal( (beginEndMode >= 0), "glVertex3fv(): called outside glBegin/glEnd");

Callers 6

glRectiFunction · 0.70
onRenderMethod · 0.50
onRenderMethod · 0.50
onRenderMethod · 0.50
onRenderMethod · 0.50
onRenderMethod · 0.50

Calls 1

glVertex4fFunction · 0.70

Tested by

no test coverage detected