diff options
author | Marek Olšák <[email protected]> | 2017-02-22 23:40:53 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-02-25 00:03:09 +0100 |
commit | d17b8d08a3e51df7ff218adf54600b34fa015a4f (patch) | |
tree | 6c5af2d90f06ede498c6982ad5ec4dacadd03667 /src/gallium/drivers/trace/tr_dump.c | |
parent | 4a883966c1f74f43afc145d2c3d27af7b8c5e01a (diff) |
trace: remove pipe_resource wrapping
Not needed. ddebug does the same thing. The limitation is that drivers
can only use pipe_resource::screen through pipe_resource_reference.
This unbreaks trace, because pipe_context uploaders aren't wrapped,
so trace doesn't understand buffers returned by them.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/trace/tr_dump.c')
-rw-r--r-- | src/gallium/drivers/trace/tr_dump.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/gallium/drivers/trace/tr_dump.c b/src/gallium/drivers/trace/tr_dump.c index b173b8abf89..112a69e29c1 100644 --- a/src/gallium/drivers/trace/tr_dump.c +++ b/src/gallium/drivers/trace/tr_dump.c @@ -625,20 +625,6 @@ void trace_dump_ptr(const void *value) trace_dump_null(); } - -void trace_dump_resource_ptr(struct pipe_resource *_resource) -{ - if (!dumping) - return; - - if (_resource) { - struct trace_resource *tr_resource = trace_resource(_resource); - trace_dump_ptr(tr_resource->resource); - } else { - trace_dump_null(); - } -} - void trace_dump_surface_ptr(struct pipe_surface *_surface) { if (!dumping) |