enum PixelFormatFlags
Flags defining some properties of pixel formats.
Values
| Name | Value | Description |
|---|---|---|
PFF_HASALPHA |
1 |
This format has an alpha channel. |
PFF_COMPRESSED |
2 |
This format is compressed. |
PFF_FLOAT |
4 |
This is a floating point format. |
PFF_DEPTH |
8 |
This is a depth format (for depth textures). |
PFF_INTEGER |
16 |
This format stores data internally as integers. |
PFF_SIGNED |
32 |
Format contains signed data. |
PFF_NORMALIZED |
64 |
Format contains normalized data. |