diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-04-28 06:01:22 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-06-21 02:36:12 +0200 |
commit | b8c75a845b1784045a10fa8b5f1f57f2ec53eeca (patch) | |
tree | b71f71b5d3d8c3d12556e3fbf9344dbb9e8f220c /src/video_core/engines/maxwell_3d.cpp | |
parent | gl_shader_decompiler: Allow 1D textures to be texture buffers (diff) | |
download | yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.tar yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.tar.gz yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.tar.bz2 yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.tar.lz yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.tar.xz yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.tar.zst yuzu-b8c75a845b1784045a10fa8b5f1f57f2ec53eeca.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 08d553696..8755b8af4 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -430,14 +430,10 @@ Texture::TICEntry Maxwell3D::GetTICEntry(u32 tic_index) const { Texture::TICEntry tic_entry; memory_manager.ReadBlockUnsafe(tic_address_gpu, &tic_entry, sizeof(Texture::TICEntry)); - 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"); - - const auto r_type = tic_entry.r_type.Value(); - const auto g_type = tic_entry.g_type.Value(); - const auto b_type = tic_entry.b_type.Value(); - const auto a_type = tic_entry.a_type.Value(); + const auto r_type{tic_entry.r_type.Value()}; + const auto g_type{tic_entry.g_type.Value()}; + const auto b_type{tic_entry.b_type.Value()}; + const auto a_type{tic_entry.a_type.Value()}; // TODO(Subv): Different data types for separate components are not supported DEBUG_ASSERT(r_type == g_type && r_type == b_type && r_type == a_type); |