glUniform2ui64vArb function opengl_glext
GLAPI void APIENTRY glUniform2ui64vARB (GLint location, GLsizei count, const GLuint64 *value)
Implementation
void glUniform2ui64vArb(int location, int count, Pointer<Uint64> value) {
final glUniform2ui64vArbAsFunction = _glUniform2ui64vArb
.cast<
NativeFunction<
Void Function(Int32 location, Uint32 count, Pointer<Uint64> value)
>
>()
.asFunction<
void Function(int location, int count, Pointer<Uint64> value)
>();
return glUniform2ui64vArbAsFunction(location, count, value);
}