OpenGL-Refpages icon indicating copy to clipboard operation
OpenGL-Refpages copied to clipboard

glDeleteFramebuffers framebuffers must be `const GLuint*`

Open BeastLe9enD opened this issue 10 months ago • 0 comments

On https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDeleteFramebuffers.xhtml, it says:

void glDeleteFramebuffers( GLsizei n, GLuint *framebuffers);

but the type of framebuffers must be const GLuint* in my opinion. At least on GLES2, it is:

https://registry.khronos.org/OpenGL-Refpages/es2.0/xhtml/glDeleteFramebuffers.xml

Is this intended?

BeastLe9enD avatar Apr 17 '24 08:04 BeastLe9enD