glFramebufferDrawBufferExt function opengl_glext
GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode)
Implementation
void glFramebufferDrawBufferExt(int framebuffer, int mode) {
final glFramebufferDrawBufferExtAsFunction = _glFramebufferDrawBufferExt
.cast<NativeFunction<Void Function(Uint32 framebuffer, Uint32 mode)>>()
.asFunction<void Function(int framebuffer, int mode)>();
return glFramebufferDrawBufferExtAsFunction(framebuffer, mode);
}