Re: [Mesa-dev] [PATCH 1/2] vbo: Print display list debug using printf() like dlist.c does.

2013-02-05 Thread Jordan Justen
On Mon, Feb 4, 2013 at 7:30 PM, Eric Anholt e...@anholt.net wrote: Jordan Justen jljus...@gmail.com writes: On Fri, Feb 1, 2013 at 1:34 PM, Eric Anholt e...@anholt.net wrote: Otherwise, the stderr and stdout debug end up interleaved wrong when I pipe them to a file. Shouldn't we convert

Re: [Mesa-dev] [PATCH 1/2] vbo: Print display list debug using printf() like dlist.c does.

2013-02-04 Thread Eric Anholt
Jordan Justen jljus...@gmail.com writes: On Fri, Feb 1, 2013 at 1:34 PM, Eric Anholt e...@anholt.net wrote: Otherwise, the stderr and stdout debug end up interleaved wrong when I pipe them to a file. Shouldn't we convert dlist.c to _mesa_debug instead? It doesn't seem right for mesa to use

[Mesa-dev] [PATCH 1/2] vbo: Print display list debug using printf() like dlist.c does.

2013-02-01 Thread Eric Anholt
Otherwise, the stderr and stdout debug end up interleaved wrong when I pipe them to a file. --- src/mesa/vbo/vbo_save_api.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mesa/vbo/vbo_save_api.c b/src/mesa/vbo/vbo_save_api.c index b4c90a0..789e864

Re: [Mesa-dev] [PATCH 1/2] vbo: Print display list debug using printf() like dlist.c does.

2013-02-01 Thread Jordan Justen
On Fri, Feb 1, 2013 at 1:34 PM, Eric Anholt e...@anholt.net wrote: Otherwise, the stderr and stdout debug end up interleaved wrong when I pipe them to a file. Shouldn't we convert dlist.c to _mesa_debug instead? It doesn't seem right for mesa to use printf... -Jordan ---