glIsSampler function opengl_glext
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);
}