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

Function glClipPlane

engine/source/platformAndroid/AndroidGL2ES.cpp:577–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575 AssertFatal( 0, "glTexGenfv(): this method call needs to be implemented");
576}
577void glClipPlane( GLuint plane, GLdouble * equation )
578{
579 GLfloat fequ[4];
580 fequ[0] = (GLfloat)equation[0];
581 fequ[1] = (GLfloat)equation[1];
582 fequ[2] = (GLfloat)equation[2];
583 fequ[3] = (GLfloat)equation[3];
584 glClipPlanef( plane, fequ );
585 int glError;
586 glError = TEST_FOR_OPENGL_ERRORS
587}
588GLboolean glAreTexturesResident( GLsizei, const GLuint *, GLboolean*)
589{
590 int glError;

Callers 1

sceneRenderMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected