glGetQueryObjecti64v function

void glGetQueryObjecti64v(
  1. int id,
  2. int pname,
  3. Pointer<Int64> params
)
define glGetQueryObjecti64v GLEW_GET_FUN(__glewGetQueryObjecti64v)
GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTI64VPROC __glewGetQueryObjecti64v
typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64* params)

Implementation

void glGetQueryObjecti64v(int id, int pname, Pointer<Int64> params) {
  final glGetQueryObjecti64vAsFunction = _glGetQueryObjecti64v
      .cast<
          NativeFunction<
              Void Function(Uint32 id, Uint32 pname, Pointer<Int64> params)>>()
      .asFunction<void Function(int id, int pname, Pointer<Int64> params)>();
  return glGetQueryObjecti64vAsFunction(id, pname, params);
}