summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-01 03:34:18 +0100
committerGitHub <noreply@github.com>2018-11-01 03:34:18 +0100
commit86e70cf30210c6a43b23884012cc5e24fff68d03 (patch)
treea22222e4a592003f2d9b276f17e28e5ff0a78e26 /src/video_core/engines/shader_bytecode.h
parentMerge pull request #1614 from ReinUsesLisp/surface-params (diff)
parentAssert Control Codes Generation (diff)
downloadyuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.tar
yuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.tar.gz
yuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.tar.bz2
yuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.tar.lz
yuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.tar.xz
yuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.tar.zst
yuzu-86e70cf30210c6a43b23884012cc5e24fff68d03.zip
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index b84da512f..27c011e6f 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -578,6 +578,10 @@ union Instruction {
} fmul32;
union {
+ BitField<52, 1, u64> generates_cc;
+ } op_32;
+
+ union {
BitField<48, 1, u64> is_signed;
} shift;
@@ -1658,4 +1662,4 @@ private:
}
};
-} // namespace Tegra::Shader \ No newline at end of file
+} // namespace Tegra::Shader