r300: Debug messages are written to stderr, so fflush that
authorNicolai Hähnle <nhaehnle@gmail.com>
Thu, 27 Aug 2009 15:12:22 +0000 (17:12 +0200)
committerNicolai Hähnle <nhaehnle@gmail.com>
Thu, 27 Aug 2009 16:13:48 +0000 (18:13 +0200)
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c
src/mesa/drivers/dri/r300/compiler/r3xx_vertprog.c
src/mesa/drivers/dri/r300/compiler/radeon_program_pair.c
src/mesa/drivers/dri/r300/r300_fragprog_common.c
src/mesa/drivers/dri/r300/r300_vertprog.c

index d39b82be71cb5cb7df5539f637e8eaa32b86f318..76c3a7ecfd237a21a0f3d2756dd674d816da26f8 100644 (file)
@@ -106,7 +106,7 @@ void r3xx_compile_fragment_program(struct r300_fragment_program_compiler* c)
        if (c->Base.Debug) {
                _mesa_printf("Fragment Program: After native rewrite:\n");
                rc_print_program(&c->Base.Program);
-               fflush(stdout);
+               fflush(stderr);
        }
 
        if (c->is_r500) {
@@ -128,7 +128,7 @@ void r3xx_compile_fragment_program(struct r300_fragment_program_compiler* c)
        if (c->Base.Debug) {
                _mesa_printf("Compiler: after NqSSA-DCE:\n");
                rc_print_program(&c->Base.Program);
-               fflush(stdout);
+               fflush(stderr);
        }
 
        if (c->is_r500) {
index 6c1a03868911d80e5dfc915ca860e3b09c49db3e..93a516105e6a5caf3aacbb3fef1c6f5f9c767552 100644 (file)
@@ -603,7 +603,7 @@ void r3xx_compile_vertex_program(struct r300_vertex_program_compiler* compiler)
        if (compiler->Base.Debug) {
                fprintf(stderr, "Vertex program after native rewrite:\n");
                rc_print_program(&compiler->Base.Program);
-               fflush(stdout);
+               fflush(stderr);
        }
 
        {
@@ -620,7 +620,7 @@ void r3xx_compile_vertex_program(struct r300_vertex_program_compiler* compiler)
        if (compiler->Base.Debug) {
                fprintf(stderr, "Vertex program after source conflict resolve:\n");
                rc_print_program(&compiler->Base.Program);
-               fflush(stdout);
+               fflush(stderr);
        }
 
        {
@@ -637,7 +637,7 @@ void r3xx_compile_vertex_program(struct r300_vertex_program_compiler* compiler)
                if (compiler->Base.Debug) {
                        fprintf(stderr, "Vertex program after NQSSADCE:\n");
                        rc_print_program(&compiler->Base.Program);
-                       fflush(stdout);
+                       fflush(stderr);
                }
        }
 
@@ -649,7 +649,7 @@ void r3xx_compile_vertex_program(struct r300_vertex_program_compiler* compiler)
        compiler->code->OutputsWritten = compiler->Base.Program.OutputsWritten;
 
        if (compiler->Base.Debug) {
-               printf("Final vertex program code:\n");
+               fprintf(stderr, "Final vertex program code:\n");
                r300_vertex_program_dump(compiler->code);
        }
 }
index 48616ac461cbd2dd0654bc86e7248497a40fdea6..4c26db5d2441abe3fce8077244545055861bdfe6 100644 (file)
@@ -549,7 +549,7 @@ static void emit_all_tex(struct pair_state *s)
                if (s->Compiler->Base.Debug) {
                        _mesa_printf("   ");
                        _mesa_print_instruction(inst);
-                       fflush(stdout);
+                       fflush(stderr);
                }
 
                struct radeon_pair_texture_instruction rpti;
index 6674efc5bcaa8d89d6da6c5b7ee9e30ec26e67f4..e1dc23102704a5acf4a3530579ecf8a5a66f5051 100644 (file)
@@ -212,10 +212,10 @@ static void translate_fragment_program(GLcontext *ctx, struct r300_fragment_prog
        compiler.AllocateHwInputs = &allocate_hw_inputs;
 
        if (compiler.Base.Debug) {
-               fflush(stdout);
+               fflush(stderr);
                _mesa_printf("Fragment Program: Initial program:\n");
                _mesa_print_program(&cont->Base.Base);
-               fflush(stdout);
+               fflush(stderr);
        }
 
        rc_mesa_to_rc_program(&compiler.Base, &cont->Base.Base);
index 862f21208506e3f7f86a05d68dbc37a824b95b7f..9fe6c18f564ca06f4cf5c80d8f0bf925b9b0b0df 100644 (file)
@@ -225,7 +225,7 @@ static struct r300_vertex_program *build_program(GLcontext *ctx,
        if (compiler.Base.Debug) {
                fprintf(stderr, "Initial vertex program:\n");
                _mesa_print_program(&vp->Base->Base);
-               fflush(stdout);
+               fflush(stderr);
        }
 
        if (mesa_vp->IsPositionInvariant) {