This commit is contained in:
twinaphex 2018-10-06 15:15:37 +02:00
parent 088a7ed60d
commit 1cb4a0a34f

View File

@ -216,6 +216,20 @@ GLenum rglGetError(void)
return glGetError();
}
/*
*
* Core in:
* OpenGL : 3.2
* OpenGLES : N/A
*/
void rglProvokingVertex( GLenum provokeMode)
{
#if defined(HAVE_OPENGL)
glProvokingVertex(provokeMode);
#endif
}
/*
*
* Core in: