aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-31 22:34:18 -0400
committerGitHub <noreply@github.com>2018-10-31 22:34:18 -0400
commit86e70cf30210c6a43b23884012cc5e24fff68d03 (patch)
treea22222e4a592003f2d9b276f17e28e5ff0a78e26 /src/video_core/engines/shader_bytecode.h
parent0b33d38e9bc2793d51f332a548ec5f50c6eaac09 (diff)
parent5bb80ab009a0ee070c4e2caefb6795ef9a28e355 (diff)
Merge pull request #1528 from FernandoS27/assert-control-codes
Assert Control Codes Generation on Shader Instructions
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