summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-03-16 01:23:04 +0100
committerGitHub <noreply@github.com>2020-03-16 01:23:04 +0100
commitddafc997763dc67f790958e04a8c07a5317da549 (patch)
treeda411c4e5830153005d25922218aa837fc83928b /src/video_core/engines
parentMerge pull request #3503 from makigumo/patch-2 (diff)
parentclang-format (diff)
downloadyuzu-ddafc997763dc67f790958e04a8c07a5317da549.tar
yuzu-ddafc997763dc67f790958e04a8c07a5317da549.tar.gz
yuzu-ddafc997763dc67f790958e04a8c07a5317da549.tar.bz2
yuzu-ddafc997763dc67f790958e04a8c07a5317da549.tar.lz
yuzu-ddafc997763dc67f790958e04a8c07a5317da549.tar.xz
yuzu-ddafc997763dc67f790958e04a8c07a5317da549.tar.zst
yuzu-ddafc997763dc67f790958e04a8c07a5317da549.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index c9bc83cd7..eba42deb4 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -911,14 +911,9 @@ union Instruction {
} fadd32i;
union {
- BitField<20, 8, u64> shift_position;
- BitField<28, 8, u64> shift_length;
- BitField<48, 1, u64> negate_b;
- BitField<49, 1, u64> negate_a;
-
- u64 GetLeftShiftValue() const {
- return 32 - (shift_position + shift_length);
- }
+ BitField<40, 1, u64> brev;
+ BitField<47, 1, u64> rd_cc;
+ BitField<48, 1, u64> is_signed;
} bfe;
union {