diff options
| author | 2021-02-19 18:10:18 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:22 -0400 | |
| commit | 6db69990da9f232e6d982cdcb69c2e27d93075cf (patch) | |
| tree | 9367909cd030622ea36c4cadccd2fabc6f28d471 /src/shader_recompiler/frontend/ir/opcodes.inc | |
| parent | shader: Primitive Vulkan integration (diff) | |
| download | yuzu-6db69990da9f232e6d982cdcb69c2e27d93075cf.tar.gz yuzu-6db69990da9f232e6d982cdcb69c2e27d93075cf.tar.xz yuzu-6db69990da9f232e6d982cdcb69c2e27d93075cf.zip | |
spirv: Add lower fp16 to fp32 pass
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.inc')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.inc b/src/shader_recompiler/frontend/ir/opcodes.inc index ede5e20c2..50da77535 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.inc +++ b/src/shader_recompiler/frontend/ir/opcodes.inc | |||
| @@ -119,8 +119,10 @@ OPCODE(PackUint2x32, U64, U32x | |||
| 119 | OPCODE(UnpackUint2x32, U32x2, U64, ) | 119 | OPCODE(UnpackUint2x32, U32x2, U64, ) |
| 120 | OPCODE(PackFloat2x16, U32, F16x2, ) | 120 | OPCODE(PackFloat2x16, U32, F16x2, ) |
| 121 | OPCODE(UnpackFloat2x16, F16x2, U32, ) | 121 | OPCODE(UnpackFloat2x16, F16x2, U32, ) |
| 122 | OPCODE(PackDouble2x32, U64, U32x2, ) | 122 | OPCODE(PackHalf2x16, U32, F32x2, ) |
| 123 | OPCODE(UnpackDouble2x32, U32x2, U64, ) | 123 | OPCODE(UnpackHalf2x16, F32x2, U32, ) |
| 124 | OPCODE(PackDouble2x32, F64, U32x2, ) | ||
| 125 | OPCODE(UnpackDouble2x32, U32x2, F64, ) | ||
| 124 | 126 | ||
| 125 | // Pseudo-operation, handled specially at final emit | 127 | // Pseudo-operation, handled specially at final emit |
| 126 | OPCODE(GetZeroFromOp, U1, Opaque, ) | 128 | OPCODE(GetZeroFromOp, U1, Opaque, ) |