aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-07-23 11:15:58 -0300
committerGitHub <noreply@github.com>2022-07-23 11:15:58 -0300
commitb34de74f81ef73a78d43d169b9f1ce7f175035b5 (patch)
tree5a5428e941c22fcac24e6eb497f54eded8921b73 /Ryujinx.Graphics.Shader/Translation/Rewriter.cs
parent5811d121dfc10239ce2f14e36b2addb37df3c83c (diff)
Avoid adding shader buffer descriptors for constant buffers that are not used (#3478)1.1.183
* Avoid adding shader buffer descriptors for constant buffers that are not used * Shader cache version
Diffstat (limited to 'Ryujinx.Graphics.Shader/Translation/Rewriter.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Translation/Rewriter.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Graphics.Shader/Translation/Rewriter.cs b/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
index e9b073ab..d59da019 100644
--- a/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
+++ b/Ryujinx.Graphics.Shader/Translation/Rewriter.cs
@@ -75,9 +75,9 @@ namespace Ryujinx.Graphics.Shader.Translation
int cbOffset = GetStorageCbOffset(config.Stage, slot);
- Operand baseAddrLow = config.CreateCbuf(0, cbOffset);
- Operand baseAddrHigh = config.CreateCbuf(0, cbOffset + 1);
- Operand size = config.CreateCbuf(0, cbOffset + 2);
+ Operand baseAddrLow = Cbuf(0, cbOffset);
+ Operand baseAddrHigh = Cbuf(0, cbOffset + 1);
+ Operand size = Cbuf(0, cbOffset + 2);
Operand offset = PrependOperation(Instruction.Subtract, addrLow, baseAddrLow);
Operand borrow = PrependOperation(Instruction.CompareLessU32, addrLow, baseAddrLow);