diff options
| author | Ian Romanick <ian.d.romanick@intel.com> | 2010-07-02 14:43:01 -0700 | 
|---|---|---|
| committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-07-02 14:57:07 -0700 | 
| commit | 4d962e66e319191d5b94291b6f55d720df71130a (patch) | |
| tree | 3da98f271a752652cfa1279e2bc5d9b8b2baa44e /src | |
| parent | de75dfac4ea2cad64dc91f6ac16fe205b5015af6 (diff) | |
glsl2: Print the linking info log in the stand-alone compiler
Diffstat (limited to 'src')
| -rw-r--r-- | 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 16bbc8cd3f..9bed2c6bcc 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); | 
