summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index f8d67e227..16f410538 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -800,6 +800,12 @@ union Instruction {
800 } popc; 800 } popc;
801 801
802 union { 802 union {
803 BitField<41, 1, u64> sh;
804 BitField<40, 1, u64> invert;
805 BitField<48, 1, u64> is_signed;
806 } flo;
807
808 union {
803 BitField<39, 3, u64> pred; 809 BitField<39, 3, u64> pred;
804 BitField<42, 1, u64> neg_pred; 810 BitField<42, 1, u64> neg_pred;
805 } sel; 811 } sel;