mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 22:40:24 +01:00
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:
parent
86d2383e77
commit
f9f06f68fb
1 changed files with 2 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue