summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-08-16 16:05:16 +0200
committerSubv <subv2112@gmail.com>2018-08-18 17:22:42 +0200
commit2e95ba2e9c67d16456fb9f700cfe3da837e16a73 (patch)
tree83c1c00e9a39179dd72db272c9d49bbe7cdfa5a9 /src/video_core/engines
parentMerge pull request #1075 from lioncash/include (diff)
downloadyuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.tar
yuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.tar.gz
yuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.tar.bz2
yuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.tar.lz
yuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.tar.xz
yuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.tar.zst
yuzu-2e95ba2e9c67d16456fb9f700cfe3da837e16a73.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 2526ebf28..f438fa809 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -283,6 +283,10 @@ union Instruction {
} alu;
union {
+ BitField<48, 1, u64> negate_b;
+ } fmul;
+
+ union {
BitField<48, 1, u64> is_signed;
} shift;