radeon/llvm: Add some comments and fix coding style
[mesa.git] / src / gallium / drivers / r300 / compiler / radeon_opcodes.h
index 0b881c2bfe20359a1bf94ac59d300410dd996a79..9c4b456168afa4c45ae913f9922bb66fe8e510b7 100644 (file)
@@ -217,6 +217,21 @@ typedef enum {
        /** Stop execution of the shader (GLSL discard) */
        RC_OPCODE_KILP,
 
+       /* Vertex shader CF Instructions */
+       RC_ME_PRED_SEQ,
+       RC_ME_PRED_SGT,
+       RC_ME_PRED_SGE,
+       RC_ME_PRED_SNEQ,
+       RC_ME_PRED_SET_CLR,
+       RC_ME_PRED_SET_INV,
+       RC_ME_PRED_SET_POP,
+       RC_ME_PRED_SET_RESTORE,
+
+       RC_VE_PRED_SEQ_PUSH,
+       RC_VE_PRED_SGT_PUSH,
+       RC_VE_PRED_SGE_PUSH,
+       RC_VE_PRED_SNEQ_PUSH,
+
        MAX_RC_OPCODE
 } rc_opcode;