glsl: Put `sample`-qualified varyings in their own packing classes
[mesa.git] / src / glsl / main.cpp
index 58e940a34b085801e9abea51e207936571bf49c0..aa188b1f158de50e8cd8dd9fb1d5c163a475ce12 100644 (file)
@@ -371,8 +371,10 @@ main(int argc, char **argv)
 
       compile_shader(ctx, shader);
 
-      if (!shader->CompileStatus) {
+      if (strlen(shader->InfoLog) > 0)
         printf("Info log for %s:\n%s\n", argv[optind], shader->InfoLog);
+
+      if (!shader->CompileStatus) {
         status = EXIT_FAILURE;
         break;
       }