aux/trace: add pipe_context::set_debug_callback hook

Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10899>
This commit is contained in:
Mike Blumenkrantz 2021-05-06 16:04:00 -04:00 committed by Marge Bot
parent b663c54417
commit 4a54cb49d9
1 changed files with 16 additions and 0 deletions

View File

@ -1786,6 +1786,21 @@ trace_context_set_context_param(struct pipe_context *_context,
context->set_context_param(context, param, value);
}
static void
trace_context_set_debug_callback(struct pipe_context *_context, const struct pipe_debug_callback *cb)
{
struct trace_context *tr_context = trace_context(_context);
struct pipe_context *context = tr_context->pipe;
trace_dump_call_begin("pipe_context", "set_debug_callback");
trace_dump_arg(ptr, context);
trace_dump_call_end();
context->set_debug_callback(context, cb);
}
static void
trace_context_render_condition(struct pipe_context *_context,
struct pipe_query *query,
@ -2173,6 +2188,7 @@ trace_context_create(struct trace_screen *tr_scr,
TR_CTX_INIT(texture_subdata);
TR_CTX_INIT(invalidate_resource);
TR_CTX_INIT(set_context_param);
TR_CTX_INIT(set_debug_callback);
#undef TR_CTX_INIT