 | glPixelFormat Enumeration |
Supported pixel formats
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration PixelFormat
public enum class PixelFormat
Members
| Member name | Value | Description |
---|
| Alpha | 6406 |
Each element is a single alpha component.
The GL converts it to floating point and assembles it into an RGBA element by attaching 0 for red, green, and blue.
Each component is then clamped to the range [0,1].
|
| Rgb | 6407 |
Each element is an RGB triple.
The GL converts it to floating point and assembles it into an RGBA element by attaching 1 for alpha.
Each component is then clamped to the range [0,1].
|
| Rgba | 6408 |
Each element contains all four components.
The GL converts it to floating point, then each component is clamped to the range [0,1].
|
| Luminance | 6409 |
Each element is a single luminance value.
The GL converts it to floating point, then assembles it into an RGBA element by replicating the luminance value three times for red, green, and blue and attaching 1 for alpha.
Each component is then clamped to the range [0,1].
|
| LuminanceAlpha | 6410 |
Each element is a luminance/alpha pair.
The GL converts it to floating point, then assembles it into an RGBA element by replicating the luminance value three times for red, green, and blue.
Each component is then clamped to the range [0,1].
|
See Also