summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-08-31 22:06:00 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-09-04 06:55:24 +0200
commit77ef4fa9078b56c3fcaded3a618cf95fe21e66d4 (patch)
tree7d21a7ab8db5c806f93f4d345a887e4f1d2c7a2f /src/video_core/engines
parentMerge pull request #2835 from chris062689/master (diff)
downloadyuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.tar
yuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.tar.gz
yuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.tar.bz2
yuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.tar.lz
yuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.tar.xz
yuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.tar.zst
yuzu-77ef4fa9078b56c3fcaded3a618cf95fe21e66d4.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 c3678b9ea..bd8c1ada0 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -675,6 +675,10 @@ union Instruction {
} shift;
union {
+ BitField<39, 1, u64> wrap;
+ } shr;
+
+ union {
BitField<39, 5, u64> shift_amount;
BitField<48, 1, u64> negate_b;
BitField<49, 1, u64> negate_a;