summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-30 18:56:36 +0200
committerGitHub <noreply@github.com>2020-04-30 18:56:36 +0200
commitc7b5a87c9038f37e5fec07336de575498a84b534 (patch)
treeaaefec229f8ddcb6744b405757d2559c1dcf0b92 /src/video_core/engines
parentMerge pull request #3805 from ReinUsesLisp/preserve-contents (diff)
parentshader/arithmetic_integer: Fix tracking issue in temporary (diff)
downloadyuzu-c7b5a87c9038f37e5fec07336de575498a84b534.tar
yuzu-c7b5a87c9038f37e5fec07336de575498a84b534.tar.gz
yuzu-c7b5a87c9038f37e5fec07336de575498a84b534.tar.bz2
yuzu-c7b5a87c9038f37e5fec07336de575498a84b534.tar.lz
yuzu-c7b5a87c9038f37e5fec07336de575498a84b534.tar.xz
yuzu-c7b5a87c9038f37e5fec07336de575498a84b534.tar.zst
yuzu-c7b5a87c9038f37e5fec07336de575498a84b534.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 cde3a26b9..8dae754d4 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -814,6 +814,10 @@ union Instruction {
} alu_integer;
union {
+ BitField<43, 1, u64> x;
+ } iadd;
+
+ union {
BitField<39, 1, u64> ftz;
BitField<32, 1, u64> saturate;
BitField<49, 2, HalfMerge> merge;