glIsImageHandleResidentNv function opengl_glext

int glIsImageHandleResidentNv(
  1. int handle
)
GLAPI GLboolean APIENTRY glIsImageHandleResidentNV (GLuint64 handle)

Implementation

int glIsImageHandleResidentNv(int handle) {
  final glIsImageHandleResidentNvAsFunction = _glIsImageHandleResidentNv
      .cast<NativeFunction<Int32 Function(Uint64 handle)>>()
      .asFunction<int Function(int handle)>();
  return glIsImageHandleResidentNvAsFunction(handle);
}