Module: Mesa Branch: gallium-double-opcodes Commit: 1ce170eef554cf99a355523cf3665a5079e1dec6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1ce170eef554cf99a355523cf3665a5079e1dec6
Author: Igor Oliveira <[email protected]> Date: Tue Jan 19 17:01:50 2010 -0400 gallium: add dfrac and dldexp opcodes --- src/gallium/include/pipe/p_shader_tokens.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index 15f8b0d..9ab18c4 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -334,7 +334,9 @@ struct tgsi_property_data { #define TGSI_OPCODE_DRCP 157 #define TGSI_OPCODE_DSQRT 158 #define TGSI_OPCODE_DMAD 159 -#define TGSI_OPCODE_LAST 160 +#define TGSI_OPCODE_DFRAC 160 +#define TGSI_OPCODE_DLDEXP 161 +#define TGSI_OPCODE_LAST 162 #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
