From 806f5691430b86640d64d4c5ae77c5e1dac1625a Mon Sep 17 00:00:00 2001 From: Fernando Sahmkow Date: Wed, 8 Jan 2020 15:59:21 -0400 Subject: Shader_IR: Change name of TrackSampler function so it does not confuse with the type. --- src/video_core/shader/track.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/video_core/shader/track.cpp') diff --git a/src/video_core/shader/track.cpp b/src/video_core/shader/track.cpp index d449b625e..4db721f69 100644 --- a/src/video_core/shader/track.cpp +++ b/src/video_core/shader/track.cpp @@ -72,8 +72,8 @@ bool AmendNodeCv(std::size_t amend_index, Node node) { return false; } -std::tuple ShaderIR::TrackSampler(Node tracked, const NodeBlock& code, - s64 cursor) { +std::tuple ShaderIR::TrackBindlessSampler(Node tracked, const NodeBlock& code, + s64 cursor) { if (const auto cbuf = std::get_if(&*tracked)) { // Constant buffer found, test if it's an immediate const auto offset = cbuf->GetOffset(); @@ -124,11 +124,12 @@ std::tuple ShaderIR::TrackSampler(Node tracked, const NodeBl if (!source) { return {}; } - return TrackSampler(source, code, new_cursor); + return TrackBindlessSampler(source, code, new_cursor); } if (const auto operation = std::get_if(&*tracked)) { for (std::size_t i = operation->GetOperandsCount(); i > 0; --i) { - if (auto found = TrackSampler((*operation)[i - 1], code, cursor); std::get<0>(found)) { + if (auto found = TrackBindlessSampler((*operation)[i - 1], code, cursor); + std::get<0>(found)) { // Cbuf found in operand. return found; } @@ -137,7 +138,8 @@ std::tuple ShaderIR::TrackSampler(Node tracked, const NodeBl } if (const auto conditional = std::get_if(&*tracked)) { const auto& conditional_code = conditional->GetCode(); - return TrackSampler(tracked, conditional_code, static_cast(conditional_code.size())); + return TrackBindlessSampler(tracked, conditional_code, + static_cast(conditional_code.size())); } return {}; } -- cgit v1.2.3