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

Function glVertex3f

engine/source/platformAndroid/AndroidGL2ES.cpp:317–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

315 glError = TEST_FOR_OPENGL_ERRORS
316}
317void glVertex3f( GLfloat x, GLfloat y, GLfloat z )
318{
319 AssertFatal( (beginEndMode >= 0), "glVertex3f(): called outside glBegin/glEnd");
320 glVertex4f( x, y, z, 1.0f );
321 int glError;
322 glError = TEST_FOR_OPENGL_ERRORS
323}
324void glVertex2fv( const F32 * pv )
325{
326 AssertFatal( (beginEndMode >= 0), "glVertex2fv(): called outside glBegin/glEnd");

Callers 2

dglWireCubeFunction · 0.50
dglSolidCubeFunction · 0.50

Calls 1

glVertex4fFunction · 0.70

Tested by

no test coverage detected