summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/shader/slang/slang_ir.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/shader/slang/slang_ir.h b/src/mesa/shader/slang/slang_ir.h
index 2589d68872..7fe3f7f153 100644
--- a/src/mesa/shader/slang/slang_ir.h
+++ b/src/mesa/shader/slang/slang_ir.h
@@ -61,8 +61,8 @@ typedef enum
IR_CROSS, /* vec3 cross product */
IR_MIN,
IR_MAX,
- IR_SEQUAL, /* Set if not equal */
- IR_SNEQUAL, /* Set if equal */
+ IR_SEQUAL, /* Set if args are equal */
+ IR_SNEQUAL, /* Set if args are not equal */
IR_SGE, /* Set if greater or equal */
IR_SGT, /* Set if greater than */
IR_POW, /* x^y */
@@ -88,7 +88,8 @@ typedef enum
IR_TEXP, /* texture lookup with projection */
IR_FLOAT,
IR_FIELD,
- IR_I_TO_F
+ IR_I_TO_F, /* int[4] to float[4] conversion */
+ IR_F_TO_I /* float[4] to int[4] conversion */
} slang_ir_opcode;