diff options
| author | 2022-01-28 20:03:50 -0500 | |
|---|---|---|
| committer | 2022-01-28 20:03:50 -0500 | |
| commit | 64a68ccbb4ec533ba2ff378c60ff62c7be6315e9 (patch) | |
| tree | 7ed65721d3be9b2468eeee51dcc7f9550b1034df /src/shader_recompiler/ir_opt | |
| parent | Merge pull request #7784 from german77/ds5 (diff) | |
| parent | spirv_atomic: Define U32x2 storage buffers for 64-bit storage atomics (diff) | |
| download | yuzu-64a68ccbb4ec533ba2ff378c60ff62c7be6315e9.tar.gz yuzu-64a68ccbb4ec533ba2ff378c60ff62c7be6315e9.tar.xz yuzu-64a68ccbb4ec533ba2ff378c60ff62c7be6315e9.zip | |
Merge pull request #7800 from ameerj/spirv-int64-storage
spirv_atomic: Define U32x2 storage buffers for 64-bit storage atomics
Diffstat (limited to 'src/shader_recompiler/ir_opt')
| -rw-r--r-- | src/shader_recompiler/ir_opt/collect_shader_info_pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/ir_opt/collect_shader_info_pass.cpp b/src/shader_recompiler/ir_opt/collect_shader_info_pass.cpp index a78c469be..b6a20f904 100644 --- a/src/shader_recompiler/ir_opt/collect_shader_info_pass.cpp +++ b/src/shader_recompiler/ir_opt/collect_shader_info_pass.cpp | |||
| @@ -688,7 +688,7 @@ void VisitUsages(Info& info, IR::Inst& inst) { | |||
| 688 | case IR::Opcode::StorageAtomicAnd64: | 688 | case IR::Opcode::StorageAtomicAnd64: |
| 689 | case IR::Opcode::StorageAtomicOr64: | 689 | case IR::Opcode::StorageAtomicOr64: |
| 690 | case IR::Opcode::StorageAtomicXor64: | 690 | case IR::Opcode::StorageAtomicXor64: |
| 691 | info.used_storage_buffer_types |= IR::Type::U64; | 691 | info.used_storage_buffer_types |= IR::Type::U64 | IR::Type::U32x2; |
| 692 | info.uses_int64_bit_atomics = true; | 692 | info.uses_int64_bit_atomics = true; |
| 693 | break; | 693 | break; |
| 694 | case IR::Opcode::BindlessImageAtomicIAdd32: | 694 | case IR::Opcode::BindlessImageAtomicIAdd32: |