diff options
| author | 2020-03-18 17:07:24 -0300 | |
|---|---|---|
| committer | 2020-03-18 20:03:19 -0300 | |
| commit | 9f46066bda8b4e585cf08623d2b3199eb0170330 (patch) | |
| tree | 17b5f85ed465c1589e4e2982bad351b5a2c5a0a8 /src | |
| parent | microprofile: Silence sign comparison warning (diff) | |
| download | yuzu-9f46066bda8b4e585cf08623d2b3199eb0170330.tar.gz yuzu-9f46066bda8b4e585cf08623d2b3199eb0170330.tar.xz yuzu-9f46066bda8b4e585cf08623d2b3199eb0170330.zip | |
kepler_compute: Remove unused variables
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/kepler_compute.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/engines/kepler_compute.cpp b/src/video_core/engines/kepler_compute.cpp index 1ecd65925..368c75a66 100644 --- a/src/video_core/engines/kepler_compute.cpp +++ b/src/video_core/engines/kepler_compute.cpp | |||
| @@ -119,14 +119,6 @@ Texture::TICEntry KeplerCompute::GetTICEntry(u32 tic_index) const { | |||
| 119 | Texture::TICEntry tic_entry; | 119 | Texture::TICEntry tic_entry; |
| 120 | memory_manager.ReadBlockUnsafe(tic_address_gpu, &tic_entry, sizeof(Texture::TICEntry)); | 120 | memory_manager.ReadBlockUnsafe(tic_address_gpu, &tic_entry, sizeof(Texture::TICEntry)); |
| 121 | 121 | ||
| 122 | const auto r_type{tic_entry.r_type.Value()}; | ||
| 123 | const auto g_type{tic_entry.g_type.Value()}; | ||
| 124 | const auto b_type{tic_entry.b_type.Value()}; | ||
| 125 | const auto a_type{tic_entry.a_type.Value()}; | ||
| 126 | |||
| 127 | // TODO(Subv): Different data types for separate components are not supported | ||
| 128 | DEBUG_ASSERT(r_type == g_type && r_type == b_type && r_type == a_type); | ||
| 129 | |||
| 130 | return tic_entry; | 122 | return tic_entry; |
| 131 | } | 123 | } |
| 132 | 124 | ||