glFramebufferReadBufferExt function opengl_glext

void glFramebufferReadBufferExt(
  1. int framebuffer,
  2. int mode
)
GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode)

Implementation

void glFramebufferReadBufferExt(int framebuffer, int mode) {
  final glFramebufferReadBufferExtAsFunction = _glFramebufferReadBufferExt
      .cast<NativeFunction<Void Function(Uint32 framebuffer, Uint32 mode)>>()
      .asFunction<void Function(int framebuffer, int mode)>();
  return glFramebufferReadBufferExtAsFunction(framebuffer, mode);
}