diff options
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_dump.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_dump.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index 69ab1b4401..e2e5394f86 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -102,8 +102,7 @@ static const char *file_names[TGSI_FILE_COUNT] = "IMM", "LOOP", "PRED", - "SV", - "RES" + "SV" }; static const char *interpolate_names[] = @@ -320,11 +319,6 @@ iter_declaration( } } - if (decl->Declaration.Resource) { - TXT(", "); - ENM(decl->Resource.Texture, texture_names); - } - if (iter->processor.Processor == TGSI_PROCESSOR_FRAGMENT && decl->Declaration.File == TGSI_FILE_INPUT) { @@ -543,6 +537,11 @@ iter_instruction( first_reg = FALSE; } + if (inst->Instruction.Texture) { + TXT( ", " ); + ENM( inst->Texture.Texture, texture_names ); + } + switch (inst->Instruction.Opcode) { case TGSI_OPCODE_IF: case TGSI_OPCODE_ELSE: |