diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-05-13 06:40:12 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-05-13 06:51:11 +0200 |
commit | 370d3fa1e3114662a6e28e41b3d0a412d860d1a3 (patch) | |
tree | b343fc8366016e07cc8a8cbc976d000db932c94b /src/video_core/surface.h | |
parent | codecs/vp9: Use u8 for norm and map luts (diff) | |
download | yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.tar yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.tar.gz yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.tar.bz2 yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.tar.lz yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.tar.xz yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.tar.zst yuzu-370d3fa1e3114662a6e28e41b3d0a412d860d1a3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/surface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/surface.h b/src/video_core/surface.h index 86fea61ae..75e055592 100644 --- a/src/video_core/surface.h +++ b/src/video_core/surface.h @@ -147,7 +147,7 @@ enum class SurfaceTarget { TextureCubeArray, }; -constexpr std::array<u32, MaxPixelFormat> BLOCK_WIDTH_TABLE = {{ +constexpr std::array<u8, MaxPixelFormat> BLOCK_WIDTH_TABLE = {{ 1, // A8B8G8R8_UNORM 1, // A8B8G8R8_SNORM 1, // A8B8G8R8_SINT @@ -249,7 +249,7 @@ constexpr u32 DefaultBlockWidth(PixelFormat format) { return BLOCK_WIDTH_TABLE[static_cast<std::size_t>(format)]; } -constexpr std::array<u32, MaxPixelFormat> BLOCK_HEIGHT_TABLE = {{ +constexpr std::array<u8, MaxPixelFormat> BLOCK_HEIGHT_TABLE = {{ 1, // A8B8G8R8_UNORM 1, // A8B8G8R8_SNORM 1, // A8B8G8R8_SINT @@ -351,7 +351,7 @@ constexpr u32 DefaultBlockHeight(PixelFormat format) { return BLOCK_HEIGHT_TABLE[static_cast<std::size_t>(format)]; } -constexpr std::array<u32, MaxPixelFormat> BITS_PER_BLOCK_TABLE = {{ +constexpr std::array<u8, MaxPixelFormat> BITS_PER_BLOCK_TABLE = {{ 32, // A8B8G8R8_UNORM 32, // A8B8G8R8_SNORM 32, // A8B8G8R8_SINT |