aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/shader_ir.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-05 14:13:14 -0400
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-09 17:15:45 -0400
commitf2549739d1166d9177bfff3a6af150266ba5309f (patch)
tree606e744b19db98c940b9cde236ad062afb678bb1 /src/video_core/shader/shader_ir.h
parent2de764931141314357944627524767476d6d2cf9 (diff)
shader_ir: Add comments on missing instruction.
Also shows Nvidia's address space on comments.
Diffstat (limited to 'src/video_core/shader/shader_ir.h')
-rw-r--r--src/video_core/shader/shader_ir.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_ir.h b/src/video_core/shader/shader_ir.h
index 928ac7cb5..6145f0a70 100644
--- a/src/video_core/shader/shader_ir.h
+++ b/src/video_core/shader/shader_ir.h
@@ -127,6 +127,10 @@ public:
return disable_flow_stack;
}
+ u32 ConvertAddressToNvidiaSpace(const u32 address) const {
+ return (address - main_offset) * sizeof(Tegra::Shader::Instruction);
+ }
+
private:
void Decode();