From: Brian Date: Wed, 17 Jan 2007 22:58:24 +0000 (-0700) Subject: added IR_F_TO_I, update comments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb53124fca80faf0f920d720cf01bba182e0988d;p=mesa.git added IR_F_TO_I, update comments --- diff --git a/src/mesa/shader/slang/slang_ir.h b/src/mesa/shader/slang/slang_ir.h index 2589d688722..7fe3f7f153b 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;