summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-04-16 06:16:04 +0200
committerLioncash <mathew1800@gmail.com>2020-04-16 06:16:06 +0200
commitcd2a12e78f0f728f713de3a3994159e3077982a4 (patch)
treec3eaed10111a80bdaa4b7bf0c1a4801ea7036347 /src/video_core/shader/decode
parentMerge pull request #3612 from ReinUsesLisp/red (diff)
downloadyuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar
yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.gz
yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.bz2
yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.lz
yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.xz
yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.tar.zst
yuzu-cd2a12e78f0f728f713de3a3994159e3077982a4.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/shift.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/shift.cpp b/src/video_core/shader/decode/shift.cpp
index 3b391d3e6..d4ffa8014 100644
--- a/src/video_core/shader/decode/shift.cpp
+++ b/src/video_core/shader/decode/shift.cpp
@@ -23,7 +23,6 @@ Node IsFull(Node shift) {
}
Node Shift(OperationCode opcode, Node value, Node shift) {
- Node is_full = Operation(OperationCode::LogicalIEqual, shift, Immediate(32));
Node shifted = Operation(opcode, move(value), shift);
return Operation(OperationCode::Select, IsFull(move(shift)), Immediate(0), move(shifted));
}