Closed malciin closed 1 year ago
Hello, durning parsing gl4 xml files (for creating opengl C# bindings) I've found several typos/missing parameter descriptions. I've fixed some of them:
glBindVertexBuffers
buffers
strides
glCompressedTexSubImage3D
zoffset
Other things I've noticed but I dont have proper fixes for them:
glCopyImageSubData
dstlevel
glFramebufferTexture
layer
glGetNamedBufferParameteriv
pname
params
glGetProgramResource
glTexImage3DMultisample
depth
Thanks!
Hello, durning parsing gl4 xml files (for creating opengl C# bindings) I've found several typos/missing parameter descriptions. I've fixed some of them:
glBindVertexBuffers
Fix typo:buffers
->strides
https://registry.khronos.org/OpenGL-Refpages/gl4/html/glBindVertexBuffers.xhtmlglCompressedTexSubImage3D
Add missing:zoffset
https://registry.khronos.org/OpenGL-Refpages/gl4/html/glCompressedTexSubImage3D.xhtml (copied from ES3.0 https://registry.khronos.org/OpenGL-Refpages/es3.0/html/glCompressedTexSubImage3D.xhtml where there is parameter description forzoffset
)Other things I've noticed but I dont have proper fixes for them:
glCopyImageSubData
- Missingdstlevel
in parameters section https://registry.khronos.org/OpenGL-Refpages/gl4/html/glCopyImageSubData.xhtmlglFramebufferTexture
- Missinglayer
in parameters section https://registry.khronos.org/OpenGL-Refpages/gl4/html/glFramebufferTexture.xhtmlglGetNamedBufferParameteriv
- Missingpname
¶ms
in parameters section https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetBufferParameter.xhtmlglGetProgramResource
- Only 2 arguments are in parameters section. 6 are missing. https://registry.khronos.org/OpenGL-Refpages/gl4/html/glGetProgramResource.xhtmlglTexImage3DMultisample
- Missingdepth
in parameters section https://registry.khronos.org/OpenGL-Refpages/gl4/html/glTexImage3DMultisample.xhtml