glIsSampler function opengl_glext

int glIsSampler(
  1. int sampler
)
GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler)

Implementation

int glIsSampler(int sampler) {
  final glIsSamplerAsFunction = _glIsSampler
      .cast<NativeFunction<Int32 Function(Uint32 sampler)>>()
      .asFunction<int Function(int sampler)>();
  return glIsSamplerAsFunction(sampler);
}