Mesa (master): mesa: disable debug output

Brian Paul brianp at kemper.freedesktop.org
Tue Dec 16 22:37:03 UTC 2008


Module: Mesa
Branch: master
Commit: 3be8d6db9e8bfbd1b3ebf9ac382857ad1e6ef753
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3be8d6db9e8bfbd1b3ebf9ac382857ad1e6ef753

Author: Brian Paul <brian.paul at tungstengraphics.com>
Date:   Tue Dec 16 15:25:58 2008 -0700

mesa: disable debug output

---

 src/mesa/shader/slang/slang_compile.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c
index 9ffffc3..d8aefd6 100644
--- a/src/mesa/shader/slang/slang_compile.c
+++ b/src/mesa/shader/slang/slang_compile.c
@@ -158,7 +158,7 @@ typedef struct slang_output_ctx_
 /* Debugging aid, print file/line where parsing error is detected */
 #define RETURN0 \
    do { \
-      if (1) \
+      if (0) \
          printf("slang error at %s:%d\n", __FILE__, __LINE__); \
       return 0; \
    } while (0)
@@ -1153,7 +1153,7 @@ parse_statement(slang_parse_ctx * C, slang_output_ctx * O,
       }
       break;
    default:
-      printf("Unexpected operation %d\n", op);
+      /*printf("Unexpected operation %d\n", op);*/
       RETURN0;
    }
    return 1;




More information about the mesa-commit mailing list