glIsVertexArrayApple function opengl_glext
GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array)
Implementation
int glIsVertexArrayApple(int array) {
final glIsVertexArrayAppleAsFunction = _glIsVertexArrayApple
.cast<NativeFunction<Int32 Function(Uint32 array)>>()
.asFunction<int Function(int array)>();
return glIsVertexArrayAppleAsFunction(array);
}