Fixed missing arg on gl with CGo

This commit is contained in:
Zyko 2024-04-09 02:40:21 +02:00
parent d1fd70495b
commit c3a358b44b

View File

@ -128,7 +128,7 @@ package gl
// typedef void (*fn)(GLuint index);
// ((fn)(fnptr))(index);
// }
// static void glowDrawBuffers(GLsizei n, const GLenum* bufs) {
// static void glowDrawBuffers(uintptr_t fnptr, GLsizei n, const GLenum* bufs) {
// typedef void (*fn)(GLsizei n, const GLenum* bufs);
// ((fn)(fnptr))(n, bufs);
// }