From 25ee5b4f911eaa10de2ad2b6e6b37c2094fcf3ef Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Thu, 19 Sep 2024 18:08:58 -0700 Subject: [PATCH] Adds BytesPerBlock helper (#516) --- DirectXTex/DirectXTex.h | 2 ++ DirectXTex/DirectXTexUtil.cpp | 39 +++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/DirectXTex/DirectXTex.h b/DirectXTex/DirectXTex.h index 6eeebc4..901fc4c 100644 --- a/DirectXTex/DirectXTex.h +++ b/DirectXTex/DirectXTex.h @@ -72,6 +72,8 @@ namespace DirectX size_t __cdecl BitsPerColor(_In_ DXGI_FORMAT fmt) noexcept; + size_t __cdecl BytesPerBlock(_In_ DXGI_FORMAT fmt) noexcept; + enum FORMAT_TYPE { FORMAT_TYPE_TYPELESS, diff --git a/DirectXTex/DirectXTexUtil.cpp b/DirectXTex/DirectXTexUtil.cpp index 7223c71..c78df2e 100644 --- a/DirectXTex/DirectXTexUtil.cpp +++ b/DirectXTex/DirectXTexUtil.cpp @@ -920,6 +920,45 @@ size_t DirectX::BitsPerColor(DXGI_FORMAT fmt) noexcept } +//------------------------------------------------------------------------------------- +// Returns bytes per block for a given DXGI BC format, or 0 on failure +//------------------------------------------------------------------------------------- +_Use_decl_annotations_ +size_t DirectX::BytesPerBlock(DXGI_FORMAT fmt) noexcept +{ + switch (fmt) + { + case DXGI_FORMAT_BC1_TYPELESS: + case DXGI_FORMAT_BC1_UNORM: + case DXGI_FORMAT_BC1_UNORM_SRGB: + case DXGI_FORMAT_BC4_TYPELESS: + case DXGI_FORMAT_BC4_UNORM: + case DXGI_FORMAT_BC4_SNORM: + return 8; + + case DXGI_FORMAT_BC2_TYPELESS: + case DXGI_FORMAT_BC2_UNORM: + case DXGI_FORMAT_BC2_UNORM_SRGB: + case DXGI_FORMAT_BC3_TYPELESS: + case DXGI_FORMAT_BC3_UNORM: + case DXGI_FORMAT_BC3_UNORM_SRGB: + case DXGI_FORMAT_BC5_TYPELESS: + case DXGI_FORMAT_BC5_UNORM: + case DXGI_FORMAT_BC5_SNORM: + case DXGI_FORMAT_BC6H_TYPELESS: + case DXGI_FORMAT_BC6H_UF16: + case DXGI_FORMAT_BC6H_SF16: + case DXGI_FORMAT_BC7_TYPELESS: + case DXGI_FORMAT_BC7_UNORM: + case DXGI_FORMAT_BC7_UNORM_SRGB: + return 16; + + default: + return 0; + } +} + + //------------------------------------------------------------------------------------- // Computes the image row pitch in bytes, and the slice ptich (size in bytes of the image) // based on DXGI format, width, and height