 | ProgramUniformDataType Enumeration |
Supported data types for uniforms
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic enum UniformDataType
Public Enumeration UniformDataType
public enum class UniformDataType
Members
| Member name | Value | Description |
---|
| Float | 5126 |
Single-precision floating-point type.
Corresponds to C#'s float type.
|
| Vector2 | 35664 |
A vector of 2 floats.
Corresponds to OpenTK's Vector2 type.
|
| Vector3 | 35665 |
A vector of 3 floats.
Corresponds to OpenTK's Vector3 type.
|
| Vector4 | 35666 |
A vector of 4 floats.
Corresponds to OpenTK's Vector4 type.
|
| Int | 5124 |
32-bit integer type.
Corresponds to C#'s int type.
|
| IVector2 | 35667 |
A vector of 2 integers.
|
| IVector3 | 35668 |
A vector of 3 integers.
|
| IVector4 | 35669 |
A vector of 4 integers.
|
| Bool | 35670 |
Boolean type.
Corresponds to C#'s bool type.
|
| BVector2 | 35671 |
A vector of 2 booleans.
|
| BVector3 | 35672 |
A vector of 3 booleans.
|
| BVector4 | 35673 |
A vector of 4 booleans.
|
| Matrix2 | 35674 |
A 2x2 matrix of floats.
Corresponds to OpenTK's Matrix2 type.
|
| Matrix3 | 35675 |
A 3x3 matrix of floats.
Corresponds to OpenTK's Matrix3 type.
|
| Matrix4 | 35676 |
A 4x4 matrix of floats.
Corresponds to OpenTK's Matrix4 type.
|
| Sampler2D | 35678 |
A 2D texture sampler.
|
| SamplerCube | 35680 |
A cubetexture sampler.
|
See Also