Re: [Mesa-dev] [PATCH] mesa: Move MESA_GLSL=dump output to stderr.

2014-03-01 Thread Matt Turner
Reviewed-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH] mesa: Move MESA_GLSL=dump output to stderr.

2014-03-01 Thread Brian Paul
On 03/01/2014 01:47 AM, Kenneth Graunke wrote: i965 recently moved debug printfs to use stderr, including ones which trigger on MESA_GLSL=dump. This resulted in scrambled output. For drivers using ir_to_mesa, print_program was already using stderr, yet all the code around it was using stdout.

[Mesa-dev] [PATCH] mesa: Move MESA_GLSL=dump output to stderr.

2014-03-01 Thread Kenneth Graunke
i965 recently moved debug printfs to use stderr, including ones which trigger on MESA_GLSL=dump. This resulted in scrambled output. For drivers using ir_to_mesa, print_program was already using stderr, yet all the code around it was using stdout. Signed-off-by: Kenneth Graunke --- src/mesa/mai