summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-16 02:56:07 +0200
committerSubv <subv2112@gmail.com>2018-04-18 19:52:53 +0200
commit48d4efbd696d1dbd5330d74e69a52f8e508d279d (patch)
tree618163c00bf621be9b7a44535493ceeaabd6257f /src/video_core/engines/maxwell_3d.cpp
parentGLCache: Take into account the texture's block height when caching and unswizzling. (diff)
downloadyuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.tar
yuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.tar.gz
yuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.tar.bz2
yuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.tar.lz
yuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.tar.xz
yuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.tar.zst
yuzu-48d4efbd696d1dbd5330d74e69a52f8e508d279d.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index a2f162602..2a3ff234a 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -218,8 +218,9 @@ Texture::TICEntry Maxwell3D::GetTICEntry(u32 tic_index) const {
Texture::TICEntry tic_entry;
Memory::ReadBlock(tic_address_cpu, &tic_entry, sizeof(Texture::TICEntry));
- ASSERT_MSG(tic_entry.header_version == Texture::TICHeaderVersion::BlockLinear,
- "TIC versions other than BlockLinear are unimplemented");
+ ASSERT_MSG(tic_entry.header_version == Texture::TICHeaderVersion::BlockLinear ||
+ tic_entry.header_version == Texture::TICHeaderVersion::Pitch,
+ "TIC versions other than BlockLinear or Pitch are unimplemented");
ASSERT_MSG((tic_entry.texture_type == Texture::TextureType::Texture2D) ||
(tic_entry.texture_type == Texture::TextureType::Texture2DNoMipmap),