tgsi: Dump semantics before interpolator.

This commit is contained in:
Michal Krol 2008-04-07 11:44:34 +02:00
parent 03a3373bdf
commit 2483062f10

View file

@ -746,17 +746,19 @@ dump_declaration_short(
}
}
if( decl->Declaration.Interpolate ) {
TXT( ", " );
ENM( decl->Interpolation.Interpolate, TGSI_INTERPOLATES_SHORT );
}
if( decl->Declaration.Semantic ) {
if (decl->Declaration.Semantic) {
TXT( ", " );
ENM( decl->Semantic.SemanticName, TGSI_SEMANTICS_SHORT );
CHR( '[' );
UID( decl->Semantic.SemanticIndex );
CHR( ']' );
if (decl->Semantic.SemanticIndex != 0) {
CHR( '[' );
UID( decl->Semantic.SemanticIndex );
CHR( ']' );
}
}
if (decl->Declaration.Interpolate) {
TXT( ", " );
ENM( decl->Interpolation.Interpolate, TGSI_INTERPOLATES_SHORT );
}
}