 | ProgramAttributeDataType Enumeration |
Supported data types for attributes
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic enum AttributeDataType
Public Enumeration AttributeDataType
public enum class AttributeDataType
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.
|
| 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.
|
See Also