--- Mesa-7.7/src/gallium/auxiliary/tgsi/tgsi_dump.c.orig 2009-12-22 03:26:02.000000000 +0100 +++ Mesa-7.7/src/gallium/auxiliary/tgsi/tgsi_dump.c 2010-01-10 09:40:23.298610151 +0100 @@ -47,7 +47,7 @@ uint indentation; - void (*printf)(struct dump_ctx *ctx, const char *format, ...); + void (*dump_printf)(struct dump_ctx *ctx, const char *format, ...); }; static void @@ -68,19 +68,19 @@ uint enum_count ) { if (e >= enum_count) - ctx->printf( ctx, "%u", e ); + ctx->dump_printf( ctx, "%u", e ); else - ctx->printf( ctx, "%s", enums[e] ); + ctx->dump_printf( ctx, "%s", enums[e] ); } -#define EOL() ctx->printf( ctx, "\n" ) -#define TXT(S) ctx->printf( ctx, "%s", S ) -#define CHR(C) ctx->printf( ctx, "%c", C ) -#define UIX(I) ctx->printf( ctx, "0x%x", I ) -#define UID(I) ctx->printf( ctx, "%u", I ) -#define INSTID(I) ctx->printf( ctx, "% 3u", I ) -#define SID(I) ctx->printf( ctx, "%d", I ) -#define FLT(F) ctx->printf( ctx, "%10.4f", F ) +#define EOL() ctx->dump_printf( ctx, "\n" ) +#define TXT(S) ctx->dump_printf( ctx, "%s", S ) +#define CHR(C) ctx->dump_printf( ctx, "%c", C ) +#define UIX(I) ctx->dump_printf( ctx, "0x%x", I ) +#define UID(I) ctx->dump_printf( ctx, "%u", I ) +#define INSTID(I) ctx->dump_printf( ctx, "% 3u", I ) +#define SID(I) ctx->dump_printf( ctx, "%d", I ) +#define FLT(F) ctx->dump_printf( ctx, "%10.4f", F ) #define ENM(E,ENUMS) dump_enum( ctx, E, ENUMS, sizeof( ENUMS ) / sizeof( *ENUMS ) ) static const char *processor_type_names[] = @@ -278,7 +278,7 @@ { struct dump_ctx ctx; - ctx.printf = dump_ctx_printf; + ctx.dump_printf = dump_ctx_printf; iter_declaration( &ctx.iter, (struct tgsi_full_declaration *)decl ); } @@ -323,7 +323,7 @@ { struct dump_ctx ctx; - ctx.printf = dump_ctx_printf; + ctx.dump_printf = dump_ctx_printf; iter_immediate( &ctx.iter, (struct tgsi_full_immediate *)imm ); } @@ -491,7 +491,7 @@ ctx.instno = instno; ctx.indent = 0; - ctx.printf = dump_ctx_printf; + ctx.dump_printf = dump_ctx_printf; ctx.indentation = 0; iter_instruction( &ctx.iter, (struct tgsi_full_instruction *)inst ); @@ -525,7 +525,7 @@ ctx.instno = 0; ctx.indent = 0; - ctx.printf = dump_ctx_printf; + ctx.dump_printf = dump_ctx_printf; ctx.indentation = 0; tgsi_iterate_shader( tokens, &ctx.iter ); @@ -579,7 +579,7 @@ ctx.base.instno = 0; ctx.base.indent = 0; - ctx.base.printf = &str_dump_ctx_printf; + ctx.base.dump_printf = &str_dump_ctx_printf; ctx.base.indentation = 0; ctx.str = str;