Click or drag to resize

Uniform Structure

Represents a uniform in a Program.

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public struct Uniform

The Uniform type exposes the following members.

Constructors
  NameDescription
Public methodUniform
Creates a uniform.
Top
Properties
  NameDescription
Public propertyLocation
The location of this uniform in the program.
Public propertyMaxFragmentUniformVectors
Get the maximum number of four-element floating-point, integer, or boolean vectors that can be held in uniform variable storage for a fragment shader.
Public propertyMaxVertexUniformVectors
Get the maximum number of four-element floating-point, integer, or boolean vectors that can be held in uniform variable storage for a vertex shader.
Top
Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue(Matrix2)
Return the value of a uniform variable of type Matrix2.
Public methodGetValue(Matrix3)
Return the value of a uniform variable of type Matrix3.
Public methodGetValue(Matrix4)
Return the value of a uniform variable of type Matrix4.
Public methodGetValue(Vector2)
Return the value of a uniform variable of type Vector2.
Public methodGetValue(Vector3)
Return the value of a uniform variable of type Vector3.
Public methodGetValue(Vector4)
Return the value of a uniform variable of type Vector4.
Public methodGetValue(Int32)
Return the value of a uniform variable.
Public methodGetValue(Single)
Return the value of a uniform variable.
Public methodGetValue(Int32, Int32)
Return the value of a uniform variable containing two integer elements.
Public methodGetValue(Single, Single)
Return the value of a uniform variable of type Vector2.
Public methodGetValue(Int32, Int32, Int32)
Return the value of a uniform variable containing three integer elements.
Public methodGetValue(Single, Single, Single)
Return the value of a uniform variable of type Vector3.
Public methodGetValue(Int32, Int32, Int32, Int32)
Return the value of a uniform variable containing four integer elements.
Public methodGetValue(Single, Single, Single, Single)
Return the value of a uniform variable of type Vector4.
Public methodSetValue(Matrix2)
Sets the value of the uniform.
Public methodSetValue(Matrix3)
Sets the value of the uniform.
Public methodSetValue(Matrix4)
Sets the value of the uniform.
Public methodSetValue(Vector2)
Sets the value of the uniform.
Public methodSetValue(Vector2)
Sets the value of the uniform.
Public methodSetValue(Vector3)
Sets the value of the uniform.
Public methodSetValue(Vector3)
Sets the value of the uniform.
Public methodSetValue(Vector4)
Sets the value of the uniform.
Public methodSetValue(Vector4)
Sets the value of the uniform.
Public methodSetValue(Int32)
Sets the value of the uniform.
Public methodSetValue(Single)
Sets the value of the uniform.
Public methodSetValue(Int32, Int32)
Sets the individual elements of a uniform containing two integer values.
Public methodSetValue(Single, Single)
Sets the individual elements of a uniform or type Vector2.
Public methodSetValue(Int32, Int32, Int32)
Sets the individual elements of a uniform containing three integer values.
Public methodSetValue(Single, Single, Single)
Sets the individual elements of a uniform or type Vector3.
Public methodSetValue(Int32, Int32, Int32, Int32)
Sets the individual elements of a uniform containing four integer values.
Public methodSetValue(Single, Single, Single, Single)
Sets the individual elements of a uniform or type Vector4.
Public methodSetValues(Matrix2)
Sets an array of values of the uniform.
Public methodSetValues(Matrix3)
Sets an array of values of the uniform.
Public methodSetValues(Matrix4)
Sets an array of values of the uniform.
Public methodSetValues(Vector2)
Sets an array of values of the uniform.
Public methodSetValues(Vector3)
Sets an array of values of the uniform.
Public methodSetValues(Vector4)
Sets an array of values of the uniform.
Public methodSetValues(Int32)
Sets an array of values of the uniform.
Public methodSetValues(Single)
Sets an array of values of the uniform.
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Remarks
These are variables marked with uniform in a vertex or fragment shader.
See Also