 | glPixelDataType Enumeration |
Supported pixel data types
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic enum PixelDataType
Public Enumeration PixelDataType
public enum class PixelDataType
Members
| Member name | Value | Description |
---|
| UnsignedByte | 5121 |
Each byte is interpreted as one color component (red, green, blue or alpha).
When converted to floating point, the value is divided by 255.
|
| UnsignedShort565 | 33635 |
A single 16-bit integer contains 5 bits for the red component, 6 bits for the green component and 5 bits for the blue component.
When converted to floating point, the red and blue components are divided by 31 and the green component is divided by 63.
|
| UnsignedShort4444 | 32819 |
A single 16-bit integer contains all components, with 4 bits for each component.
When converted to floating point, every component is divided by 15.
|
| UnsignedShort5551 | 32820 |
A single 16-bit integer contains all components, with 5 bits for the red, green and blue components, and 1 bit for the alpha component.
When converted to floating point, the red, green and blue components are divided by 31 and the alpha component is used as-is.
|
See Also