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