glCheckNamedFramebufferStatusExt function opengl_glext

int glCheckNamedFramebufferStatusExt(
  1. int framebuffer,
  2. int target
)
GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target)

Implementation

int glCheckNamedFramebufferStatusExt(int framebuffer, int target) {
  final glCheckNamedFramebufferStatusExtAsFunction =
      _glCheckNamedFramebufferStatusExt
          .cast<
            NativeFunction<Uint32 Function(Uint32 framebuffer, Uint32 target)>
          >()
          .asFunction<int Function(int framebuffer, int target)>();
  return glCheckNamedFramebufferStatusExtAsFunction(framebuffer, target);
}