From 3dd6b55851978440f39487a6ad06b30b792b3b36 Mon Sep 17 00:00:00 2001 From: Fernando Sahmkow Date: Sat, 4 Jan 2020 14:40:57 -0400 Subject: Shader_IR: Address Feedback --- src/video_core/shader/shader_ir.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/video_core/shader/shader_ir.h') diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h index 52f130e1b..aacd0a0da 100644 --- a/src/video_core/shader/shader_ir.h +++ b/src/video_core/shader/shader_ir.h @@ -176,7 +176,7 @@ public: /// Returns a condition code evaluated from internal flags Node GetConditionCode(Tegra::Shader::ConditionCode cc) const; - const Node& GetAmendNode(u32 index) const { + const Node& GetAmendNode(std::size_t index) const { return amend_code[index]; } @@ -396,8 +396,8 @@ private: Tegra::Shader::Instruction instr, bool is_write); - /// Amends - u32 DeclareAmend(Node new_amend); + /// Register new amending code and obtain the reference id. + std::size_t DeclareAmend(Node new_amend); const ProgramCode& program_code; const u32 main_offset; @@ -413,7 +413,7 @@ private: std::map basic_blocks; NodeBlock global_code; ASTManager program_manager{true, true}; - NodeBlock amend_code; + std::vector amend_code; std::set used_registers; std::set used_predicates; -- cgit v1.2.3