diff options
author | Eric Anholt <eric@anholt.net> | 2010-05-19 15:54:28 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-06-24 15:05:20 -0700 |
commit | c45b615a379e5b9cbcf951f9d738a1be77a5964b (patch) | |
tree | b459f4b9095d55ea4c29f0fc98d008bf72fd17df /ir_to_mesa.h | |
parent | 3c5979565facebc82000a611b991d2977b8e9bbf (diff) |
ir_to_mesa: Implement neg expression.
Diffstat (limited to 'ir_to_mesa.h')
-rw-r--r-- | ir_to_mesa.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ir_to_mesa.h b/ir_to_mesa.h index 515feb19a3..0535bc08a2 100644 --- a/ir_to_mesa.h +++ b/ir_to_mesa.h @@ -40,6 +40,7 @@ typedef struct ir_to_mesa_src_reg { int file; /**< PROGRAM_* from Mesa */ int index; /**< temporary index, VERT_ATTRIB_*, FRAG_ATTRIB_*, etc. */ int swizzle; /**< SWIZZLE_XYZWONEZERO swizzles from Mesa. */ + int negate; /**< NEGATE_XYZW mask from mesa */ bool reladdr; /**< Register index should be offset by address reg. */ } ir_to_mesa_src_reg; |