summaryrefslogtreecommitdiff
path: root/src/video_core/surface.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-06-24 02:07:11 -0300
committerGravatar ReinUsesLisp2019-06-24 02:07:11 -0300
commit75de730e285d30779596c5fe6b1bbd265c4e54f8 (patch)
tree5d6965adf4752a4e7e30be65d1ac3b8a09684c54 /src/video_core/surface.h
parentdecode/texture: Address feedback (diff)
downloadyuzu-75de730e285d30779596c5fe6b1bbd265c4e54f8.tar.gz
yuzu-75de730e285d30779596c5fe6b1bbd265c4e54f8.tar.xz
yuzu-75de730e285d30779596c5fe6b1bbd265c4e54f8.zip
video_core/surface: Address feedback
Diffstat (limited to 'src/video_core/surface.h')
-rw-r--r--src/video_core/surface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/surface.h b/src/video_core/surface.h
index ee9f00fa6..bfdbc3b81 100644
--- a/src/video_core/surface.h
+++ b/src/video_core/surface.h
@@ -123,7 +123,7 @@ enum class SurfaceTarget {
123 TextureCubeArray, 123 TextureCubeArray,
124}; 124};
125 125
126inline constexpr std::array<u32, MaxPixelFormat> compression_factor_shift_table = {{ 126constexpr std::array<u32, MaxPixelFormat> compression_factor_shift_table = {{
127 0, // ABGR8U 127 0, // ABGR8U
128 0, // ABGR8S 128 0, // ABGR8S
129 0, // ABGR8UI 129 0, // ABGR8UI
@@ -446,7 +446,7 @@ enum class SurfaceCompression : u8 {
446 Rearranged = 3, 446 Rearranged = 3,
447}; 447};
448 448
449inline constexpr std::array<SurfaceCompression, MaxPixelFormat> compression_type_table = {{ 449constexpr std::array<SurfaceCompression, MaxPixelFormat> compression_type_table = {{
450 SurfaceCompression::None, // ABGR8U 450 SurfaceCompression::None, // ABGR8U
451 SurfaceCompression::None, // ABGR8S 451 SurfaceCompression::None, // ABGR8S
452 SurfaceCompression::None, // ABGR8UI 452 SurfaceCompression::None, // ABGR8UI