mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
Fixed missing arg on gl with CGo
This commit is contained in:
parent
d1fd70495b
commit
c3a358b44b
@ -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);
|
||||
// }
|
||||
|
Loading…
Reference in New Issue
Block a user