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