glIsVertexAttribEnabledApple function opengl_glext
GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname)
Implementation
int glIsVertexAttribEnabledApple(int index, int pname) {
final glIsVertexAttribEnabledAppleAsFunction = _glIsVertexAttribEnabledApple
.cast<NativeFunction<Int32 Function(Uint32 index, Uint32 pname)>>()
.asFunction<int Function(int index, int pname)>();
return glIsVertexAttribEnabledAppleAsFunction(index, pname);
}