haiku: Fix llvmpipe and clean up softpipe tracing
authorAlexander von Gluck IV <kallisti5@unixzen.com>
Sun, 6 Oct 2013 15:41:54 +0000 (15:41 +0000)
committerAlexander von Gluck IV <kallisti5@unixzen.com>
Fri, 11 Oct 2013 00:28:23 +0000 (19:28 -0500)
* Fix LLVM library and defines
* Only enable tracing when scons build=debug

Acked-by: Brian Paul <brianp@vmware.com>
src/gallium/targets/haiku-softpipe/GalliumContext.cpp
src/gallium/targets/haiku-softpipe/GalliumFramebuffer.cpp
src/gallium/targets/haiku-softpipe/SConscript
src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp

index 92ea67ab290ca220c22ae9e4e890f292fe21e03a..ba76ddaee8916519635fa5ee6637234b5264dce8 100644 (file)
@@ -32,8 +32,7 @@ extern "C" {
 }
 
 
-#define TRACE_CONTEXT
-#ifdef TRACE_CONTEXT
+#ifdef DEBUG
 #      define TRACE(x...) printf("GalliumContext: " x)
 #      define CALLED() TRACE("CALLED: %s\n", __PRETTY_FUNCTION__)
 #else
index 48af2c57495d789dc14d0543dab1199f794f5edb..7a33cc06cda737f4579a64d7df0b59aab21ba249 100644 (file)
@@ -18,8 +18,7 @@ extern "C" {
 }
 
 
-#define TRACE_FRAMEBUFFER
-#ifdef TRACE_FRAEMBUFFER
+#ifdef DEBUG
 #   define TRACE(x...) printf("GalliumFramebuffer: " x)
 #   define CALLED() TRACE("CALLED: %s\n", __PRETTY_FUNCTION__)
 #else
index 3a16c3174c4d6b7f364fa49fb38f77db0b3fd530..40bf03cf413719de2bf3aee1510ba9eab9704925 100644 (file)
@@ -26,7 +26,8 @@ env.Append(CPPPATH = [
 ])
 
 if env['llvm']:
-    env.Append(CPPDEFINES = 'HAVE_LLVMPIPE')
+    env.Append(CPPDEFINES = ['GALLIUM_LLVMPIPE'])
+    env.Prepend(LIBS = [llvmpipe])
 
 softpipe_sources = [
     'GalliumContext.cpp',
@@ -34,7 +35,7 @@ softpipe_sources = [
     'SoftwareRenderer.cpp'
 ]
 
-# libswpipe gets turned into "Software Renderer" by the haiku package system
+# libswpipe gets turned into "Softpipe" by the haiku package system
 module = env.LoadableModule(
     target ='swpipe',
     source = softpipe_sources,
index 16752c6237c5eda488e476ecb6c3eaa80e6c5e0e..ced22566a09b18762d98b53cc470a419fa7a7da6 100644 (file)
@@ -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