diff options
| author | 2018-09-06 19:53:44 -0400 | |
|---|---|---|
| committer | 2018-09-08 02:53:39 -0400 | |
| commit | fdd5c97a149724fedfede83b630a0a93e51f1c63 (patch) | |
| tree | 69c3b164d4684542b25fc33c99109e4fee2e8066 /src | |
| parent | gl_rasterizer_cache: Partially implement several non-2D texture types. (diff) | |
| download | yuzu-fdd5c97a149724fedfede83b630a0a93e51f1c63.tar.gz yuzu-fdd5c97a149724fedfede83b630a0a93e51f1c63.tar.xz yuzu-fdd5c97a149724fedfede83b630a0a93e51f1c63.zip | |
maxwell_3d: Remove assert that no longer applies.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 4 |
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 { | |||
| 293 | tic_entry.header_version == Texture::TICHeaderVersion::Pitch, | 293 | tic_entry.header_version == Texture::TICHeaderVersion::Pitch, |
| 294 | "TIC versions other than BlockLinear or Pitch are unimplemented"); | 294 | "TIC versions other than BlockLinear or Pitch are unimplemented"); |
| 295 | 295 | ||
| 296 | ASSERT_MSG((tic_entry.texture_type == Texture::TextureType::Texture2D) || | ||
| 297 | (tic_entry.texture_type == Texture::TextureType::Texture2DNoMipmap), | ||
| 298 | "Texture types other than Texture2D are unimplemented"); | ||
| 299 | |||
| 300 | auto r_type = tic_entry.r_type.Value(); | 296 | auto r_type = tic_entry.r_type.Value(); |
| 301 | auto g_type = tic_entry.g_type.Value(); | 297 | auto g_type = tic_entry.g_type.Value(); |
| 302 | auto b_type = tic_entry.b_type.Value(); | 298 | auto b_type = tic_entry.b_type.Value(); |