commit | a7400e736467b7b032ee0d8a8bad25a0a65e782b | [log] [tgz] |
---|---|---|
author | Ian Romanick <ian.d.romanick@intel.com> | Fri Jul 24 18:03:02 2009 -0700 |
committer | Ian Romanick <ian.d.romanick@intel.com> | Fri Jul 24 18:03:02 2009 -0700 |
tree | dbcbfd8f885044b5a06f61f9a0cd365ad3305e93 | |
parent | f3cba9d66a5b45f4afeda3763f9ec1fb53e2ec89 [diff] |
ARB prog: _mesa_print_program output should go to same place as _mesa_printf
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c index de7fef1..441496b 100644 --- a/src/mesa/shader/prog_print.c +++ b/src/mesa/shader/prog_print.c
@@ -816,7 +816,7 @@ 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); }