glUniform3fvArb function opengl_glext

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