glIsFramebufferExt function opengl_glext
GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer)
Implementation
int glIsFramebufferExt(int framebuffer) {
final glIsFramebufferExtAsFunction = _glIsFramebufferExt
.cast<NativeFunction<Int32 Function(Uint32 framebuffer)>>()
.asFunction<int Function(int framebuffer)>();
return glIsFramebufferExtAsFunction(framebuffer);
}