diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-08-04 12:18:09 +0200 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-08-04 12:18:09 +0200 |
commit | 2783f3bfabd6e316f7e221e950499c3631c041ce (patch) | |
tree | 697de92c0c80930849b1b572ebc027cd634f8f0c /src/gallium/auxiliary/tgsi | |
parent | eb80ed0d2eac693012e7e4c2ad772f7f57f74977 (diff) |
tgsi: Put a newline after IMM.
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_dump.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index 290d78bb14..0eedb1c91e 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -265,16 +265,6 @@ static const char *modulate_names[TGSI_MODULATE_COUNT] = }; static void -_dump_register_prefix( - uint file, - uint first, - uint last ) -{ - - -} - -static void _dump_register( uint file, int first, @@ -354,7 +344,7 @@ tgsi_dump_declaration( TXT( ", " ); ENM( decl->Declaration.Interpolate, interpolate_names ); - + EOL(); } @@ -373,7 +363,7 @@ tgsi_dump_immediate( { uint i; - TXT( "\nIMM " ); + TXT( "IMM " ); ENM( imm->Immediate.DataType, immediate_type_names ); TXT( " { " ); @@ -390,6 +380,8 @@ tgsi_dump_immediate( TXT( ", " ); } TXT( " }" ); + + EOL(); } static boolean @@ -535,7 +527,7 @@ tgsi_dump_instruction( UID( inst->InstructionExtLabel.Label ); break; } - + EOL(); } |