ARB prog: _mesa_print_program output should go to same place as _mesa_printf

This commit is contained in:
Ian Romanick 2009-07-24 18:03:02 -07:00
parent f3cba9d66a
commit a7400e7364

View file

@ -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);
}