Add glDrawBuffer stub

This commit is contained in:
Luke Benstead 2019-03-10 20:05:40 +00:00
parent 890a925225
commit 834599dc4b
2 changed files with 5 additions and 0 deletions

View File

@ -420,6 +420,10 @@ GLAPI void APIENTRY glClearDepth(GLfloat depth) {
} }
GLAPI void APIENTRY glDrawBuffer(GLenum mode) {
}
GLAPI void APIENTRY glReadBuffer(GLenum mode) { GLAPI void APIENTRY glReadBuffer(GLenum mode) {
} }

View File

@ -467,6 +467,7 @@ GLAPI void APIENTRY glClear(GLuint mode);
GLAPI void APIENTRY glClearColor(GLfloat r, GLfloat g, GLfloat b, GLfloat a); GLAPI void APIENTRY glClearColor(GLfloat r, GLfloat g, GLfloat b, GLfloat a);
GLAPI void APIENTRY glReadBuffer(GLenum mode); GLAPI void APIENTRY glReadBuffer(GLenum mode);
GLAPI void APIENTRY glDrawBuffer(GLenum mode);
/* Depth Testing */ /* Depth Testing */
GLAPI void APIENTRY glClearDepth(GLfloat depth); GLAPI void APIENTRY glClearDepth(GLfloat depth);