From: Ryan C. Gordon Date: Tue, 16 Feb 2010 15:43:18 +0000 (-0500) Subject: Don't reference glFinish() directly. X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=c429a19b5bc7134c39cf2babd0506355d50a3837;p=lugaru.git Don't reference glFinish() directly. --- diff --git a/Source/glstubs.h b/Source/glstubs.h index 7512a6f..6d0ed44 100644 --- a/Source/glstubs.h +++ b/Source/glstubs.h @@ -25,6 +25,7 @@ GL_FUNC(void,glEnable,(GLenum cap),(cap),) GL_FUNC(void,glEnableClientState,(GLenum array),(array),) GL_FUNC(void,glEnd,(void),(),) GL_FUNC(void,glEndList,(void),(),) +GL_FUNC(void,glFinish,(void),(),) GL_FUNC(GLuint,glGenLists,(GLsizei range),(range),return) GL_FUNC(void,glGenTextures,(GLsizei n, GLuint *textures),(n,textures),) GL_FUNC(GLenum,glGetError,(void),(),return)