Enum bgfx::AttribType
[−]
[src]
pub enum AttribType {
Uint8(bool),
Int8(bool),
Uint10(bool),
Int10(bool),
Uint16(bool),
Int16(bool),
Half,
Float,
}Vertex attribute type.
Variants
Uint8 | Unsigned 8-bit integer. If the parameter is |
Int8 | Signed 8-bit integer. If the parameter is |
Uint10 | Unsigned 10-bit integer. If the parameter is |
Int10 | Signed 10-bit integer. If the parameter is |
Uint16 | Unsigned 16-bit integer. If the parameter is |
Int16 | Signed 16-bit integer. If the parameter is |
Half | 16-bit float. |
Float | 32-bit float. |