diff options
author | Marek Olšák <[email protected]> | 2017-03-02 19:01:35 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-03-17 18:30:21 +0100 |
commit | 080f322f06e05b0813f3753898e48dbc72b35a13 (patch) | |
tree | d91d1479cad9c1ed48e4007000389f296d9a34b4 /src/gallium/drivers/trace/tr_context.c | |
parent | 6c0a28084d160b9831c2092af4e963ed2d276b88 (diff) |
trace: remove leftover assertions after pipe_resource wrapping removal
Diffstat (limited to 'src/gallium/drivers/trace/tr_context.c')
-rw-r--r-- | src/gallium/drivers/trace/tr_context.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index 40a56df4e5f..81c1a46422b 100644 --- a/src/gallium/drivers/trace/tr_context.c +++ b/src/gallium/drivers/trace/tr_context.c @@ -1496,8 +1496,6 @@ trace_context_buffer_subdata(struct pipe_context *_context, struct pipe_context *context = tr_context->pipe; struct pipe_box box; - assert(resource->screen == context->screen); - trace_dump_call_begin("pipe_context", "buffer_subdata"); trace_dump_arg(ptr, context); @@ -1530,8 +1528,6 @@ trace_context_texture_subdata(struct pipe_context *_context, struct trace_context *tr_context = trace_context(_context); struct pipe_context *context = tr_context->pipe; - assert(resource->screen == context->screen); - trace_dump_call_begin("pipe_context", "texture_subdata"); trace_dump_arg(ptr, context); @@ -1564,8 +1560,6 @@ trace_context_invalidate_resource(struct pipe_context *_context, struct trace_context *tr_context = trace_context(_context); struct pipe_context *context = tr_context->pipe; - assert(resource->screen == context->screen); - trace_dump_call_begin("pipe_context", "invalidate_resource"); trace_dump_arg(ptr, context); |