glIsTransformFeedback function opengl_glext

int glIsTransformFeedback(
  1. int id
)
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);
}