An Uniform holding a three vector value. More...
#include <Uniform.h>
Public Member Functions | |
virtual | ~Uniform3 () |
Deletes this uniform. | |
virtual UniformType | getType () const |
Returns the type of this uniform. | |
vec3< T > | get () const |
Returns the current value of this uniform. | |
void | set (const vec3< T > &value) |
Sets the value of this uniform. | |
virtual void | setValue (ptr< Value > v) |
Sets the value of this uniform. | |
Protected Member Functions | |
Uniform3 (Program *program, UniformBlock *block, const string &name, GLint location) | |
Creates a new uniform. | |
virtual void | setValue () |
Sets this uniform in its program. |
An Uniform holding a three vector value.
virtual ork::Uniform3< U, T, R, V, W >::~Uniform3 | ( | ) | [inline, virtual] |
Deletes this uniform.
ork::Uniform3< U, T, R, V, W >::Uniform3 | ( | Program * | program, | |
UniformBlock * | block, | |||
const string & | name, | |||
GLint | location | |||
) | [inline, protected] |
Creates a new uniform.
program | the Program to which this uniform belongs. | |
block | UniformBlock to which this uniform belongs. Maybe NULL. | |
name | the name of the uniform in the GLSL shader code. | |
location | the location of this uniform. For an uniform inside a block, this location is an offset inside the uniform block buffer. |
vec3<T> ork::Uniform3< U, T, R, V, W >::get | ( | ) | const [inline] |
Returns the current value of this uniform.
virtual UniformType ork::Uniform3< U, T, R, V, W >::getType | ( | ) | const [inline, virtual] |
Returns the type of this uniform.
Implements ork::Uniform.
void ork::Uniform3< U, T, R, V, W >::set | ( | const vec3< T > & | value | ) | [inline] |
Sets the value of this uniform.
value | the new value for this uniform. |
virtual void ork::Uniform3< U, T, R, V, W >::setValue | ( | ) | [protected, virtual] |
Sets this uniform in its program.
Implements ork::Uniform.
virtual void ork::Uniform3< U, T, R, V, W >::setValue | ( | ptr< Value > | v | ) | [inline, virtual] |
Sets the value of this uniform.
v | the new value for this uniform. Must be of the same type as this Uniform. |
Implements ork::Uniform.