From b366b885a13623e13afba36e52765d949bb05766 Mon Sep 17 00:00:00 2001 From: Subv Date: Sat, 9 Jun 2018 16:19:13 -0500 Subject: GPU: Implement the iset family of shader instructions. --- src/video_core/engines/shader_bytecode.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/video_core/engines/shader_bytecode.h') diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 9f17225f8..ec8dbd370 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -329,6 +329,15 @@ union Instruction { BitField<56, 1, u64> neg_imm; } fset; + union { + BitField<39, 3, u64> pred39; + BitField<42, 1, u64> neg_pred; + BitField<44, 1, u64> bf; + BitField<45, 2, PredOperation> op; + BitField<48, 1, u64> is_signed; + BitField<49, 3, PredCondition> cond; + } iset; + union { BitField<10, 2, Register::Size> size; BitField<12, 1, u64> is_output_signed; -- cgit v1.2.3