Update
This commit is contained in:
parent
088a7ed60d
commit
1cb4a0a34f
|
@ -216,6 +216,20 @@ GLenum rglGetError(void)
|
||||||
return glGetError();
|
return glGetError();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* Core in:
|
||||||
|
* OpenGL : 3.2
|
||||||
|
* OpenGLES : N/A
|
||||||
|
*/
|
||||||
|
|
||||||
|
void rglProvokingVertex( GLenum provokeMode)
|
||||||
|
{
|
||||||
|
#if defined(HAVE_OPENGL)
|
||||||
|
glProvokingVertex(provokeMode);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
* Core in:
|
* Core in:
|
||||||
|
|
Loading…
Reference in New Issue