glFramebufferDrawBufferExt function opengl_glext

void glFramebufferDrawBufferExt(
  1. int framebuffer,
  2. int mode
)
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);
}