diff options
| author | 2021-06-22 18:28:21 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:39 -0400 | |
| commit | 4397053d5c848deae00d6599f91b1e5c137a9639 (patch) | |
| tree | 65c858cc489eb5e30eecb14a6222e512ace5e4d8 /src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp | |
| parent | glsl: Fix IADD CC (diff) | |
| download | yuzu-4397053d5c848deae00d6599f91b1e5c137a9639.tar.gz yuzu-4397053d5c848deae00d6599f91b1e5c137a9639.tar.xz yuzu-4397053d5c848deae00d6599f91b1e5c137a9639.zip | |
shader: Remove IAbs64
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp index 06ab23b1d..3501d7495 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv_integer.cpp | |||
| @@ -84,10 +84,6 @@ Id EmitIAbs32(EmitContext& ctx, Id value) { | |||
| 84 | return ctx.OpSAbs(ctx.U32[1], value); | 84 | return ctx.OpSAbs(ctx.U32[1], value); |
| 85 | } | 85 | } |
| 86 | 86 | ||
| 87 | Id EmitIAbs64(EmitContext& ctx, Id value) { | ||
| 88 | return ctx.OpSAbs(ctx.U64, value); | ||
| 89 | } | ||
| 90 | |||
| 91 | Id EmitShiftLeftLogical32(EmitContext& ctx, Id base, Id shift) { | 87 | Id EmitShiftLeftLogical32(EmitContext& ctx, Id base, Id shift) { |
| 92 | return ctx.OpShiftLeftLogical(ctx.U32[1], base, shift); | 88 | return ctx.OpShiftLeftLogical(ctx.U32[1], base, shift); |
| 93 | } | 89 | } |