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.
This commit is contained in:
Jakob Bornecrantz 2010-04-21 14:48:54 +01:00
parent 86d2383e77
commit f9f06f68fb
1 changed files with 2 additions and 3 deletions

View File

@ -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;
}