summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi/tgsi_dump.c
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2015-05-18 13:52:30 +0200
committerMarek Olšák <marek.olsak@amd.com>2015-05-26 11:46:28 +0200
commit0d84b6cf84971f3378bb95c85f7d39e0c6680b8f (patch)
tree2f0865b7f925dfa64f5ba5188ba0212c2a5eae13 /src/gallium/auxiliary/tgsi/tgsi_dump.c
parent92c31bb0dd8149d3e5db48b8dec62b242be80d28 (diff)
downloadexternal_mesa3d-0d84b6cf84971f3378bb95c85f7d39e0c6680b8f.zip
external_mesa3d-0d84b6cf84971f3378bb95c85f7d39e0c6680b8f.tar.gz
external_mesa3d-0d84b6cf84971f3378bb95c85f7d39e0c6680b8f.tar.bz2
gallium: rename TGSI tessellation processor types to match pipe shader names
I forgot to do this when pushing the interface changes. Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_dump.c')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c
index c584c2b..c80d7a2 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_dump.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c
@@ -286,15 +286,15 @@ iter_declaration(
if (decl->Declaration.File == TGSI_FILE_INPUT &&
(iter->processor.Processor == TGSI_PROCESSOR_GEOMETRY ||
(!patch &&
- (iter->processor.Processor == TGSI_PROCESSOR_TESSCTRL ||
- iter->processor.Processor == TGSI_PROCESSOR_TESSEVAL)))) {
+ (iter->processor.Processor == TGSI_PROCESSOR_TESS_CTRL ||
+ iter->processor.Processor == TGSI_PROCESSOR_TESS_EVAL)))) {
TXT("[]");
}
/* all non-patch tess ctrl shader outputs are two dimensional */
if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
!patch &&
- iter->processor.Processor == TGSI_PROCESSOR_TESSCTRL) {
+ iter->processor.Processor == TGSI_PROCESSOR_TESS_CTRL) {
TXT("[]");
}