Module: Mesa Branch: gallium-double-opcodes Commit: 3f5472a26c129c79eb7593a3a22a0469620227cc URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3f5472a26c129c79eb7593a3a22a0469620227cc
Author: Igor Oliveira <[email protected]> Date: Mon Jan 18 13:54:19 2010 -0400 gallium: add double opcodes ddiv, dmul, dmax, dmin, dslt, dsge, dseq, drcp and dqsrt --- src/gallium/include/pipe/p_shader_tokens.h | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index 5975146..ccfe41c 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -323,7 +323,16 @@ struct tgsi_property_data { #define TGSI_OPCODE_D2F 146 #define TGSI_OPCODE_DMOV 147 #define TGSI_OPCODE_DADD 148 -#define TGSI_OPCODE_LAST 149 +#define TGSI_OPCODE_DDIV 149 +#define TGSI_OPCODE_DMUL 150 +#define TGSI_OPCODE_DMAX 151 +#define TGSI_OPCODE_DMIN 152 +#define TGSI_OPCODE_DSLT 153 +#define TGSI_OPCODE_DSGE 154 +#define TGSI_OPCODE_DSEQ 155 +#define TGSI_OPCODE_DRCP 156 +#define TGSI_OPCODE_DSQRT 157 +#define TGSI_OPCODE_LAST 158 #define TGSI_SAT_NONE 0 /* do not saturate */ #define TGSI_SAT_ZERO_ONE 1 /* clamp to [0,1] */ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
