diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-04-07 11:44:34 +0200 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-04-11 11:50:08 +0200 |
commit | 2483062f10e93fbbc5e3f629627b9e8addcc3f84 (patch) | |
tree | b6e92f622571f680595793be0371019794e696fe | |
parent | 03a3373bdf929b6b7c43600c9eebb0c4ee3ff38f (diff) |
tgsi: Dump semantics before interpolator.
-rw-r--r-- | src/gallium/auxiliary/tgsi/util/tgsi_dump.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/tgsi/util/tgsi_dump.c b/src/gallium/auxiliary/tgsi/util/tgsi_dump.c index 7d292778ad..ad9770e474 100644 --- a/src/gallium/auxiliary/tgsi/util/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/util/tgsi_dump.c @@ -746,17 +746,19 @@ dump_declaration_short( } } - if( decl->Declaration.Interpolate ) { + if (decl->Declaration.Semantic) { TXT( ", " ); - ENM( decl->Interpolation.Interpolate, TGSI_INTERPOLATES_SHORT ); + ENM( decl->Semantic.SemanticName, TGSI_SEMANTICS_SHORT ); + if (decl->Semantic.SemanticIndex != 0) { + CHR( '[' ); + UID( decl->Semantic.SemanticIndex ); + CHR( ']' ); + } } - if( decl->Declaration.Semantic ) { + if (decl->Declaration.Interpolate) { TXT( ", " ); - ENM( decl->Semantic.SemanticName, TGSI_SEMANTICS_SHORT ); - CHR( '[' ); - UID( decl->Semantic.SemanticIndex ); - CHR( ']' ); + ENM( decl->Interpolation.Interpolate, TGSI_INTERPOLATES_SHORT ); } } |