 | VertexAttributeDataType Enumeration |
Supported data types for vertex attributes
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration DataType
public enum class DataType
Members
| Member name | Value | Description |
---|
| Byte | 5120 |
8-bit signed integer.
Corresponds to C#'s sbyte type.
|
| UnsignedByte | 5121 |
8-bit unsigned integer.
Corresponds to C#'s byte type.
|
| Short | 5122 |
16-bit signed integer.
Corresponds to C#'s short type.
|
| UnsignedShort | 5123 |
16-bit unsigned integer.
Corresponds to C#'s ushort type.
|
| Float | 5126 |
32-bit floating-point value.
Corresponds to C#'s float type.
|
| Fixed | 5132 |
Fixed type
|
See Also