 | RenderbufferFormat Enumeration |
Specifies the color-renderable, depth-renderable, or stencil-renderable format of a
Renderbuffer.
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration Format
Members
| Member name | Value | Description |
---|
| Rgba4 | 32854 |
Color format with alpha support, using 4 bits per component (red, green, blue and alpha)
|
| Rgb565 | 36194 |
Color format without alpha support, using 5 bits for the red and blue components and 6 bits for the green component.
|
| Rgb5A1 | 32855 |
Color format with alpha support, using 5 bits for each color component (red, green and blue) and 1 bit for the alpha component.
|
| Depth16 | 33189 |
16-bit depth format
|
| Stencil8 | 36168 |
8-bit stencil format
|
See Also