glGetQueryObjecti64vExt function
define glGetQueryObjecti64vEXT GLEW_GET_FUN(__glewGetQueryObjecti64vEXT)
GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTI64VEXTPROC __glewGetQueryObjecti64vEXT
typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64EXT *params)
Implementation
void glGetQueryObjecti64vExt(int id, int pname, Pointer<Int64> params) {
final glGetQueryObjecti64vExtAsFunction = _glGetQueryObjecti64vExt
.cast<
NativeFunction<
Void Function(Uint32 id, Uint32 pname, Pointer<Int64> params)>>()
.asFunction<void Function(int id, int pname, Pointer<Int64> params)>();
return glGetQueryObjecti64vExtAsFunction(id, pname, params);
}