aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-08 16:14:46 -0400
committerGitHub <noreply@github.com>2018-09-08 16:14:46 -0400
commitaf074ee422a5350a3adb7586fab3c3fb5ed6bdc4 (patch)
tree6425e9818766c88b2fe33aa559b4815b3f6cf9f1 /src/video_core/engines/maxwell_3d.cpp
parentdeff28d3c0f0af291946fe55f3f63af1cf83b0b1 (diff)
parent23ae7cf9dbdfc7924974a6e418207443f5839d75 (diff)
Merge pull request #1256 from bunnei/tex-target-support
Initial support for non-2D textures
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index e63ad4d46..1308080b5 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -293,10 +293,6 @@ Texture::TICEntry Maxwell3D::GetTICEntry(u32 tic_index) const {
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),
- "Texture types other than Texture2D are unimplemented");
-
auto r_type = tic_entry.r_type.Value();
auto g_type = tic_entry.g_type.Value();
auto b_type = tic_entry.b_type.Value();