Skip to content

Commit

Permalink
directory layout note
Browse files Browse the repository at this point in the history
  • Loading branch information
ixchow committed Aug 25, 2019
1 parent ba024e4 commit 7fb4e15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ GLAPI void APIENTRY glClearStencil (GLint s);
GLAPI void APIENTRY glClearDepth (GLdouble depth);
GLAPI void APIENTRY glStencilMask (GLuint mask);
GLAPI void APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
GLAPI void APIENTRY glDepthMask (GLboolean flag);
GLAPI void (APIENTRY glDepthMask) (GLboolean flag);
GLAPI void APIENTRY glDisable (GLenum cap);
GLAPI void APIENTRY glEnable (GLenum cap);
GLAPI void APIENTRY glFinish (void);
Expand Down Expand Up @@ -690,7 +690,7 @@ GLAPI void APIENTRYFP glValidateProgram (GLuint program);
GLAPI void APIENTRYFP glVertexAttrib1d (GLuint index, GLdouble x);
GLAPI void APIENTRYFP glVertexAttrib1dv (GLuint index, const GLdouble *v);
GLAPI void APIENTRYFP glVertexAttrib1f (GLuint index, GLfloat x);
GLAPI void APIENTRYFP glVertexAttrib1fv (GLuint index, const GLfloat *v);
GLAPI void (APIENTRYFP glVertexAttrib1fv) (GLuint index, const GLfloat *v);
GLAPI void APIENTRYFP glVertexAttrib1s (GLuint index, GLshort x);
GLAPI void APIENTRYFP glVertexAttrib1sv (GLuint index, const GLshort *v);
GLAPI void APIENTRYFP glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y);
Expand Down

0 comments on commit 7fb4e15

Please sign in to comment.