glIsTransformFeedback function opengl_glext
GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id)
Implementation
int glIsTransformFeedback(int id) {
final glIsTransformFeedbackAsFunction = _glIsTransformFeedback
.cast<NativeFunction<Int32 Function(Uint32 id)>>()
.asFunction<int Function(int id)>();
return glIsTransformFeedbackAsFunction(id);
}