diff options
author | gdkchan <gab.dark.100@gmail.com> | 2021-05-20 15:12:15 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 15:12:15 -0300 |
commit | b34c0a47b4d5d9cc4b3a6b51fbc76fe2b493b07d (patch) | |
tree | 7b439f95d6ae99f3c05b385174bcee456cf0fcab /Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs | |
parent | 7b8ad1c36ce7d0d9027d89e194d0abc2e879b08b (diff) |
Fix constant buffer array size when indexing is used and other buffer descriptor and resolution scale regressions (#2298)
* Fix constant buffer array size when indexing is used
* Change default QueryConstantBufferUse value
* Fix more regressions
* Ensure proper order
Diffstat (limited to 'Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs b/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs index 25e5edc9..4acfa80a 100644 --- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs +++ b/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgram.cs @@ -293,7 +293,7 @@ namespace Ryujinx.Graphics.Shader.StructuredIr Instruction.Branch or Instruction.BranchIfFalse or Instruction.BranchIfTrue => true, - _ => false, + _ => false }; } |