glCheckFramebufferStatus function opengl_glext
GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target)
Implementation
int glCheckFramebufferStatus(int target) {
final glCheckFramebufferStatusAsFunction = _glCheckFramebufferStatus
.cast<NativeFunction<Uint32 Function(Uint32 target)>>()
.asFunction<int Function(int target)>();
return glCheckFramebufferStatusAsFunction(target);
}