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

Function glVertex3fv

engine/source/platformAndroid/AndroidGL2ES.cpp:338–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336 glError = TEST_FOR_OPENGL_ERRORS
337}
338void glVertex3fv( const F32 * pv )
339{
340 AssertFatal( (beginEndMode >= 0), "glVertex3fv(): called outside glBegin/glEnd");
341 glVertex4f( pv[0], pv[1], pv[2], 1.0f );
342 int glError;
343 glError = TEST_FOR_OPENGL_ERRORS
344}
345void glVertex4fv( const F32 * pv )
346{
347 AssertFatal( (beginEndMode >= 0), "glVertex3fv(): called outside glBegin/glEnd");

Callers 2

drawSplineBeamFunction · 0.50
dglDrawBillboardFunction · 0.50

Calls 1

glVertex4fFunction · 0.70

Tested by

no test coverage detected