Przeglądaj źródła

shader_bytecode: Add Control Code enum 0xf

Control Code 0xf means to unconditionally execute the instruction. This
value is passed to most BRA, EXIT and SYNC instructions (among others)
but this may not always be the case.
ReinUsesLisp 7 lat temu
rodzic
commit
936c36a514
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/video_core/engines/shader_bytecode.h

+ 1 - 1
src/video_core/engines/shader_bytecode.h

@@ -267,7 +267,7 @@ enum class ControlCode : u64 {
     GTU = 12,
     GTU = 12,
     NEU = 13,
     NEU = 13,
     GEU = 14,
     GEU = 14,
-    //
+    T = 15,
     OFF = 16,
     OFF = 16,
     LO = 17,
     LO = 17,
     SFF = 18,
     SFF = 18,