Module: Mesa Branch: gallium-double-opcodes Commit: 7dbfe431b96054dd25244ca65bf9ccdb83de9b5b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7dbfe431b96054dd25244ca65bf9ccdb83de9b5b
Author: Michal Krol <[email protected]> Date: Tue Jan 19 14:04:29 2010 +0100 gallium: Add missing DMAD opcode definition. --- src/gallium/include/pipe/p_shader_tokens.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index 880d18e..15f8b0d 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -333,7 +333,8 @@ struct tgsi_property_data { #define TGSI_OPCODE_DSEQ 156 #define TGSI_OPCODE_DRCP 157 #define TGSI_OPCODE_DSQRT 158 -#define TGSI_OPCODE_LAST 159 +#define TGSI_OPCODE_DMAD 159 +#define TGSI_OPCODE_LAST 160 #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
