diff options
author | Ian Romanick <[email protected]> | 2009-07-24 18:03:02 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-07-24 18:03:02 -0700 |
commit | a7400e736467b7b032ee0d8a8bad25a0a65e782b (patch) | |
tree | dbcbfd8f885044b5a06f61f9a0cd365ad3305e93 /src/mesa/shader/prog_print.c | |
parent | f3cba9d66a5b45f4afeda3763f9ec1fb53e2ec89 (diff) |
ARB prog: _mesa_print_program output should go to same place as _mesa_printf
Diffstat (limited to 'src/mesa/shader/prog_print.c')
-rw-r--r-- | src/mesa/shader/prog_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c index de7fef1f861..441496bf5f4 100644 --- a/src/mesa/shader/prog_print.c +++ b/src/mesa/shader/prog_print.c @@ -816,7 +816,7 @@ _mesa_fprint_program_opt(FILE *f, void _mesa_print_program(const struct gl_program *prog) { - _mesa_fprint_program_opt(stdout, prog, PROG_PRINT_DEBUG, GL_TRUE); + _mesa_fprint_program_opt(stderr, prog, PROG_PRINT_DEBUG, GL_TRUE); } |