diff options
| author | 2021-04-04 02:31:09 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:26 -0400 | |
| commit | 3f594dd86bd1ee1b178109132482c7d6b43e66dd (patch) | |
| tree | 7de68eba744644121f3409f2de8c2e7a0bd5c125 /src/shader_recompiler/frontend/ir/opcodes.inc | |
| parent | vk_compute_pass: Fix compute passes (diff) | |
| download | yuzu-3f594dd86bd1ee1b178109132482c7d6b43e66dd.tar.gz yuzu-3f594dd86bd1ee1b178109132482c7d6b43e66dd.tar.xz yuzu-3f594dd86bd1ee1b178109132482c7d6b43e66dd.zip | |
shader: Reimplement GetCbufU64 as GetCbufU32x2
It may generate better code on some compilers and it's easier to handle.
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index 3640a5d24..734f5328b 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -40,7 +40,7 @@ OPCODE(GetCbufU16, U32, U32, | |||
| 40 | OPCODE(GetCbufS16, U32, U32, U32, ) | 40 | OPCODE(GetCbufS16, U32, U32, U32, ) |
| 41 | OPCODE(GetCbufU32, U32, U32, U32, ) | 41 | OPCODE(GetCbufU32, U32, U32, U32, ) |
| 42 | OPCODE(GetCbufF32, F32, U32, U32, ) | 42 | OPCODE(GetCbufF32, F32, U32, U32, ) |
| 43 | OPCODE(GetCbufU64, U64, U32, U32, ) | 43 | OPCODE(GetCbufU32x2, U32x2, U32, U32, ) |
| 44 | OPCODE(GetAttribute, F32, Attribute, ) | 44 | OPCODE(GetAttribute, F32, Attribute, ) |
| 45 | OPCODE(SetAttribute, Void, Attribute, F32, ) | 45 | OPCODE(SetAttribute, Void, Attribute, F32, ) |
| 46 | OPCODE(GetAttributeIndexed, F32, U32, ) | 46 | OPCODE(GetAttributeIndexed, F32, U32, ) |