summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-25 06:41:43 +0200
committerGitHub <noreply@github.com>2020-04-25 06:41:43 +0200
commit4e37825dab85f9f3895f0f545a60becc049064e5 (patch)
treefcf63a6f6abab52711d312f286f9de5e410e45e9 /src/video_core/engines
parentMerge pull request #3780 from lioncash/process (diff)
parentdecode/arithmetic_half: Fix HADD2 and HMUL2 absolute and negation bits (diff)
downloadyuzu-4e37825dab85f9f3895f0f545a60becc049064e5.tar
yuzu-4e37825dab85f9f3895f0f545a60becc049064e5.tar.gz
yuzu-4e37825dab85f9f3895f0f545a60becc049064e5.tar.bz2
yuzu-4e37825dab85f9f3895f0f545a60becc049064e5.tar.lz
yuzu-4e37825dab85f9f3895f0f545a60becc049064e5.tar.xz
yuzu-4e37825dab85f9f3895f0f545a60becc049064e5.tar.zst
yuzu-4e37825dab85f9f3895f0f545a60becc049064e5.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 73d98fe8c..cde3a26b9 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -818,11 +818,9 @@ union Instruction {
BitField<32, 1, u64> saturate;
BitField<49, 2, HalfMerge> merge;
- BitField<43, 1, u64> negate_a;
BitField<44, 1, u64> abs_a;
BitField<47, 2, HalfType> type_a;
- BitField<31, 1, u64> negate_b;
BitField<30, 1, u64> abs_b;
BitField<28, 2, HalfType> type_b;