diff options
author | Keith Whitwell <[email protected]> | 2010-03-10 10:43:00 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-03-10 10:43:00 +0000 |
commit | de27e272f42f8f453588edbcb98f3e510dad869b (patch) | |
tree | d722f0d2710172c50ccd7e29e924f8ab57305180 /src/gallium/state_trackers/python | |
parent | 7e29bef7dc7669bdf44f97e235c7a7aed8c52be8 (diff) |
gallium: remove trace module injection from various state trackers
Components such as state trackers, drivers, etc, should be free to be
recombined in arbtrary ways to build driver stacks. They should not
be reaching out and trying to build the stack themselves - this is now
expected to be handled by the "target" abstraction.
Diffstat (limited to 'src/gallium/state_trackers/python')
-rw-r--r-- | src/gallium/state_trackers/python/st_device.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/state_trackers/python/st_device.c b/src/gallium/state_trackers/python/st_device.c index 335e8e7f0d8..3aeb6226d00 100644 --- a/src/gallium/state_trackers/python/st_device.c +++ b/src/gallium/state_trackers/python/st_device.c @@ -34,7 +34,6 @@ #include "util/u_math.h" #include "util/u_memory.h" #include "util/u_simple_shaders.h" -#include "trace/tr_public.h" #include "st_device.h" #include "st_winsys.h" @@ -85,10 +84,6 @@ st_device_create(boolean hardware) else screen = st_software_screen_create(); - screen = trace_screen_create(screen); - if (!screen) - goto no_screen; - st_dev = CALLOC_STRUCT(st_device); if (!st_dev) goto no_device; |