Mesa (master): targets: Don't check if we should use trace

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Wed Apr 21 13:54:40 UTC 2010


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

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Wed Apr 21 14:48:54 2010 +0100

targets: Don't check if we should use trace

Trace does its own checking, and it used the GALLIUM_TRACE variable
as well, but expected a file and not a bool argument.

---

 src/gallium/auxiliary/target-helpers/wrap_screen.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/gallium/auxiliary/target-helpers/wrap_screen.c b/src/gallium/auxiliary/target-helpers/wrap_screen.c
index 5fe3013..eb47512 100644
--- a/src/gallium/auxiliary/target-helpers/wrap_screen.c
+++ b/src/gallium/auxiliary/target-helpers/wrap_screen.c
@@ -53,9 +53,8 @@ gallium_wrap_screen( struct pipe_screen *screen )
       screen = identity_screen_create(screen);
    }
 
-   if (debug_get_bool_option("GALLIUM_TRACE", FALSE)) {
-      screen = trace_screen_create( screen );
-   }
+   /* Trace does its own checking if it should run */
+   screen = trace_screen_create(screen);
 
    return screen;
 }




More information about the mesa-commit mailing list