Click or drag to resize

ProgramUniformDataType Enumeration

Supported data types for uniforms

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum UniformDataType
Members
  Member nameValueDescription
Float5126 Single-precision floating-point type. Corresponds to C#'s float type.
Vector235664 A vector of 2 floats. Corresponds to OpenTK's Vector2 type.
Vector335665 A vector of 3 floats. Corresponds to OpenTK's Vector3 type.
Vector435666 A vector of 4 floats. Corresponds to OpenTK's Vector4 type.
Int5124 32-bit integer type. Corresponds to C#'s int type.
IVector235667 A vector of 2 integers.
IVector335668 A vector of 3 integers.
IVector435669 A vector of 4 integers.
Bool35670 Boolean type. Corresponds to C#'s bool type.
BVector235671 A vector of 2 booleans.
BVector335672 A vector of 3 booleans.
BVector435673 A vector of 4 booleans.
Matrix235674 A 2x2 matrix of floats. Corresponds to OpenTK's Matrix2 type.
Matrix335675 A 3x3 matrix of floats. Corresponds to OpenTK's Matrix3 type.
Matrix435676 A 4x4 matrix of floats. Corresponds to OpenTK's Matrix4 type.
Sampler2D35678 A 2D texture sampler.
SamplerCube35680 A cubetexture sampler.
See Also