glUniform1fvArb function opengl_glext

void glUniform1fvArb(
  1. int location,
  2. int count,
  3. Pointer<Float> value
)
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);
}