1 | #pragma once |
---|---|
2 | |
3 | #include <stdint.h> |
4 | |
5 | namespace cvtt { namespace Tables { namespace BC7Prio { |
6 | extern const uint16_t *g_bc7PrioCodesRGB; |
7 | extern const int g_bc7NumPrioCodesRGB; |
8 | |
9 | extern const uint16_t *g_bc7PrioCodesRGBA; |
10 | extern const int g_bc7NumPrioCodesRGBA; |
11 | |
12 | int UnpackMode(uint16_t packed); |
13 | int UnpackSeedPointCount(uint16_t packed); |
14 | int UnpackPartition(uint16_t packed); |
15 | int UnpackRotation(uint16_t packed); |
16 | int UnpackIndexSelector(uint16_t packed); |
17 | }}} |
18 |