diff options
| author | 2018-08-06 21:29:29 -0400 | |
|---|---|---|
| committer | 2018-08-06 21:29:29 -0400 | |
| commit | cf82358ee6ec5bb48716b2131fc604227ef00122 (patch) | |
| tree | c93af4ab19fc65a7c880e35e2e33a36cd21e4204 /src/video_core/engines | |
| parent | Merge pull request #934 from lioncash/chrono (diff) | |
| parent | maxwell_3d: Remove outdated assert. (diff) | |
| download | yuzu-cf82358ee6ec5bb48716b2131fc604227ef00122.tar.gz yuzu-cf82358ee6ec5bb48716b2131fc604227ef00122.tar.xz yuzu-cf82358ee6ec5bb48716b2131fc604227ef00122.zip | |
Merge pull request #936 from bunnei/avoid-copies
gl_rasterizer_cache: Avoid superfluous surface copies.
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index a235b543e..5c0ae8009 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp | |||
| @@ -285,8 +285,6 @@ Texture::TICEntry Maxwell3D::GetTICEntry(u32 tic_index) const { | |||
| 285 | 285 | ||
| 286 | // TODO(Subv): Different data types for separate components are not supported | 286 | // TODO(Subv): Different data types for separate components are not supported |
| 287 | ASSERT(r_type == g_type && r_type == b_type && r_type == a_type); | 287 | ASSERT(r_type == g_type && r_type == b_type && r_type == a_type); |
| 288 | // TODO(Subv): Only UNORM formats are supported for now. | ||
| 289 | ASSERT(r_type == Texture::ComponentType::UNORM); | ||
| 290 | 288 | ||
| 291 | return tic_entry; | 289 | return tic_entry; |
| 292 | } | 290 | } |