| 1515 | } |
| 1516 | |
| 1517 | void DecodeBc7(const uint8_t *src, uint8_t *dst, size_t x, size_t y, size_t width, size_t height) { |
| 1518 | const auto *block{reinterpret_cast<const BC7::Block *>(src)}; |
| 1519 | size_t pitch{R8g8b8a8Bpp * width}; |
| 1520 | block->decode(dst, x, y, width, height, pitch); |
| 1521 | } |
| 1522 | } |