| 418 | } |
| 419 | |
| 420 | inline ddspp_constexpr bool is_compressed(DXGIFormat format) |
| 421 | { |
| 422 | return (format >= BC1_UNORM && format <= BC5_SNORM) || |
| 423 | (format >= BC6H_TYPELESS && format <= BC7_UNORM_SRGB) || |
| 424 | (format >= ASTC_4X4_TYPELESS && format <= ASTC_12X12_UNORM_SRGB); |
| 425 | } |
| 426 | |
| 427 | inline ddspp_constexpr bool is_srgb(DXGIFormat format) |
| 428 | { |
no outgoing calls
no test coverage detected