glIsTexture function opengl

int glIsTexture(
  1. int texture
)
GLAPI GLboolean GLAPIENTRY glIsTexture( GLuint texture )

Implementation

int glIsTexture(int texture) {
  final glIsTextureAsFunction = _glIsTexture
      .cast<NativeFunction<Int32 Function(Uint32 texture)>>()
      .asFunction<int Function(int texture)>();
  return glIsTextureAsFunction(texture);
}