diff options
author | Alexander von Gluck IV <[email protected]> | 2013-10-06 15:41:54 +0000 |
---|---|---|
committer | Alexander von Gluck IV <[email protected]> | 2013-10-10 19:28:23 -0500 |
commit | 0fda1cb498b1308f09679b1947fd038f680dffb8 (patch) | |
tree | e966a275b537014117fbd98c7691468b85cb3d50 /src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp | |
parent | 69508950da30a1319d2a7063226c4316bfd01e3c (diff) |
haiku: Fix llvmpipe and clean up softpipe tracing
* Fix LLVM library and defines
* Only enable tracing when scons build=debug
Acked-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp')
-rw-r--r-- | src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp b/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp index 16752c6237c..ced22566a09 100644 --- a/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp +++ b/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp @@ -21,8 +21,7 @@ #include <new> -#define TRACE_SOFTWARE -#ifdef TRACE_SOFTWARE +#ifdef DEBUG # define TRACE(x...) printf("SoftwareRenderer: " x) # define CALLED() TRACE("CALLED: %s\n", __PRETTY_FUNCTION__) #else |