Click or drag to resize

glPixelDataType Enumeration

Supported pixel data types

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum PixelDataType
Members
  Member nameValueDescription
UnsignedByte5121 Each byte is interpreted as one color component (red, green, blue or alpha). When converted to floating point, the value is divided by 255.
UnsignedShort56533635 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.
UnsignedShort444432819 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.
UnsignedShort555132820 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