Module: Mesa Branch: gallium-double-opcodes Commit: 50d320aab32eb3be50f8e399257e73f615ab6592 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=50d320aab32eb3be50f8e399257e73f615ab6592
Author: Michal Krol <[email protected]> Date: Tue Jan 19 14:04:50 2010 +0100 tgsi: Add missing opcode info for DMAD. --- src/gallium/auxiliary/tgsi/tgsi_info.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c b/src/gallium/auxiliary/tgsi/tgsi_info.c index b2339e7..269ef73 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_info.c +++ b/src/gallium/auxiliary/tgsi/tgsi_info.c @@ -189,7 +189,8 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] = { 1, 2, 0, 0, 0, 0, "DSGE", TGSI_OPCODE_DSGE }, { 1, 2, 0, 0, 0, 0, "DSEQ", TGSI_OPCODE_DSEQ }, { 1, 1, 0, 0, 0, 0, "DRCP", TGSI_OPCODE_DRCP }, - { 1, 1, 0, 0 ,0, 0, "DSQRT", TGSI_OPCODE_DSQRT } + { 1, 1, 0, 0 ,0, 0, "DSQRT", TGSI_OPCODE_DSQRT }, + { 1, 3, 0, 0 ,0, 0, "DMAD", TGSI_OPCODE_DMAD } }; const struct tgsi_opcode_info * _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
