Module: Mesa Branch: glsl2 Commit: 4d962e66e319191d5b94291b6f55d720df71130a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4d962e66e319191d5b94291b6f55d720df71130a
Author: Ian Romanick <[email protected]> Date: Fri Jul 2 14:43:01 2010 -0700 glsl2: Print the linking info log in the stand-alone compiler --- src/glsl/main.cpp | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/glsl/main.cpp b/src/glsl/main.cpp index 16bbc8c..9bed2c6 100644 --- a/src/glsl/main.cpp +++ b/src/glsl/main.cpp @@ -266,6 +266,9 @@ main(int argc, char **argv) if ((status == EXIT_SUCCESS) && do_link) { link_shaders(whole_program); status = (whole_program->LinkStatus) ? EXIT_SUCCESS : EXIT_FAILURE; + + if (strlen(whole_program->InfoLog) > 0) + printf("Info log for linking:\n%s\n", whole_program->InfoLog); } talloc_free(whole_program); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
