A. Tombs

Results 3 issues of A. Tombs

At the moment, GLAD guards against duplicate header inclusion using the following defines (in OpenGL ES mode; not sure if this is relevant to desktop contexts): ``` #ifdef __gl2_h_ #error...

enhancement
GL
glad2
C
glad1

Khronos generates their GL headers (including `glcorearb.h`) from XML files using a Python script (https://cvs.khronos.org/svn/repos/ogl/trunk/doc/registry/public/api/genheaders.py). Would it make sense for gl3w to parse the structured XML directly, rather than interpreting...

Docs for `glProgramBinary` and `glGetProgramBinary` mention passing the enum `GL_PROGRAM_BINARY_LENGTH` to `glGetProgramiv` to query the size of a program binary: https://github.com/KhronosGroup/OpenGL-Refpages/blob/master/es3.1/glProgramBinary.xml#L116 https://github.com/KhronosGroup/OpenGL-Refpages/blob/master/es3.1/glGetProgramBinary.xml#L109 However, that enum is not listed as a...

enhancement