summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-20 09:16:15 -0700
committerGravatar GitHub2018-07-20 09:16:15 -0700
commitfbc2bcd4a971d80874422c3bd39a9ce2ccd76174 (patch)
treebed3ab89e2e7a95bf758a053581a3f31227c4127 /src
parentMerge pull request #734 from lioncash/thread (diff)
parentmaxwell_3d: Remove unused variable within GetStageTextures() (diff)
downloadyuzu-fbc2bcd4a971d80874422c3bd39a9ce2ccd76174.tar.gz
yuzu-fbc2bcd4a971d80874422c3bd39a9ce2ccd76174.tar.xz
yuzu-fbc2bcd4a971d80874422c3bd39a9ce2ccd76174.zip
Merge pull request #735 from lioncash/video-unused
maxwell_3d: Remove unused variable within GetStageTextures()
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
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 dfbf80abd..d7328ff39 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -317,8 +317,6 @@ std::vector<Texture::FullTextureInfo> Maxwell3D::GetStageTextures(Regs::ShaderSt
317 auto& tex_info_buffer = fragment_shader.const_buffers[regs.tex_cb_index]; 317 auto& tex_info_buffer = fragment_shader.const_buffers[regs.tex_cb_index];
318 ASSERT(tex_info_buffer.enabled && tex_info_buffer.address != 0); 318 ASSERT(tex_info_buffer.enabled && tex_info_buffer.address != 0);
319 319
320 GPUVAddr tic_base_address = regs.tic.TICAddress();
321
322 GPUVAddr tex_info_buffer_end = tex_info_buffer.address + tex_info_buffer.size; 320 GPUVAddr tex_info_buffer_end = tex_info_buffer.address + tex_info_buffer.size;
323 321
324 // Offset into the texture constbuffer where the texture info begins. 322 // Offset into the texture constbuffer where the texture info begins.