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