glIsTexture function
GLAPI GLboolean GLAPIENTRY glIsTexture (GLuint texture)
Implementation
int glIsTexture(int texture) {
final glIsTextureLookupFunction = libGL.lookupFunction<
Uint8 Function(Uint32 texture), int Function(int texture)>('glIsTexture');
return glIsTextureLookupFunction(texture);
}