diff options
author | Brian Paul <[email protected]> | 2013-02-01 11:15:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-02-04 09:33:44 -0700 |
commit | ad30e4545b4f8b9cbcd0223266a2a461290f4143 (patch) | |
tree | 27d405f97247be95c2d42fe1a6eb111be18c65f1 /src/gallium/auxiliary/tgsi/tgsi_info.c | |
parent | d276a40e15dce26494ec61670fe2aeef62dbeba1 (diff) |
tgsi: add support for new SQRT opcode
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_info.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c b/src/gallium/auxiliary/tgsi/tgsi_info.c index 458bc69d169..94b6f60ca89 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_info.c +++ b/src/gallium/auxiliary/tgsi/tgsi_info.c @@ -57,7 +57,7 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] = { 1, 2, 0, 0, 0, 0, COMP, "SUB", TGSI_OPCODE_SUB }, { 1, 3, 0, 0, 0, 0, COMP, "LRP", TGSI_OPCODE_LRP }, { 1, 3, 0, 0, 0, 0, COMP, "CND", TGSI_OPCODE_CND }, - { 0, 0, 0, 0, 0, 0, NONE, "", 20 }, /* removed */ + { 1, 1, 0, 0, 0, 0, REPL, "SQRT", TGSI_OPCODE_SQRT }, { 1, 3, 0, 0, 0, 0, REPL, "DP2A", TGSI_OPCODE_DP2A }, { 0, 0, 0, 0, 0, 0, NONE, "", 22 }, /* removed */ { 0, 0, 0, 0, 0, 0, NONE, "", 23 }, /* removed */ |