glUniform4fvArb function opengl_glext
GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value)
Implementation
void glUniform4fvArb(int location, int count, Pointer<Float> value) {
final glUniform4fvArbAsFunction = _glUniform4fvArb
.cast<
NativeFunction<
Void Function(Int32 location, Uint32 count, Pointer<Float> value)
>
>()
.asFunction<
void Function(int location, int count, Pointer<Float> value)
>();
return glUniform4fvArbAsFunction(location, count, value);
}