diff options
author | michal <michal@michal-laptop.(none)> | 2007-08-06 17:20:31 +0100 |
---|---|---|
committer | michal <michal@michal-laptop.(none)> | 2007-08-06 17:20:31 +0100 |
commit | 3f26f6167874ba59a132cc12d77a2548c8d1d309 (patch) | |
tree | 62397ac7423c4af8083af1e6578ac6328c0c4c94 | |
parent | 2cd6291c624625368050d7c6104e11f01c605ebb (diff) |
Add GLSL opcodes.
-rw-r--r-- | src/mesa/pipe/tgsi/core/tgsi_dump.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/mesa/pipe/tgsi/core/tgsi_dump.c b/src/mesa/pipe/tgsi/core/tgsi_dump.c index 33a898ea04..bdffc59d39 100644 --- a/src/mesa/pipe/tgsi/core/tgsi_dump.c +++ b/src/mesa/pipe/tgsi/core/tgsi_dump.c @@ -276,7 +276,16 @@ static const char *TGSI_OPCODES[] = "OPCODE_TXQ", "OPCODE_CONT", "OPCODE_EMIT", - "OPCODE_ENDPRIM" + "OPCODE_ENDPRIM", + "OPCODE_BGNLOOP2", + "OPCODE_BGNSUB", + "OPCODE_ENDLOOP2", + "OPCODE_ENDSUB", + "OPCODE_NOISE1", + "OPCODE_NOISE2", + "OPCODE_NOISE3", + "OPCODE_NOISE4", + "OPCODE_NOP" }; static const char *TGSI_SATS[] = |