diff options
author | Marek Olšák <[email protected]> | 2016-06-30 00:40:01 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-07-05 00:47:12 +0200 |
commit | 50b223547814cefc0e7130e199fabc4dbedf97ce (patch) | |
tree | cb4cd8429457a6c1ba4f14970d16d2c1871e4abb /src/gallium/drivers/ddebug/dd_context.c | |
parent | 861ecf1ca98b0db0aeec186a212ac6285dfa47f6 (diff) |
ddebug: record and dump apitrace call numbers
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ddebug/dd_context.c')
-rw-r--r-- | src/gallium/drivers/ddebug/dd_context.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/ddebug/dd_context.c b/src/gallium/drivers/ddebug/dd_context.c index 5fe423b1778..98475b9fe99 100644 --- a/src/gallium/drivers/ddebug/dd_context.c +++ b/src/gallium/drivers/ddebug/dd_context.c @@ -665,9 +665,11 @@ static void dd_context_emit_string_marker(struct pipe_context *_pipe, const char *string, int len) { - struct pipe_context *pipe = dd_context(_pipe)->pipe; + struct dd_context *dctx = dd_context(_pipe); + struct pipe_context *pipe = dctx->pipe; pipe->emit_string_marker(pipe, string, len); + dd_parse_apitrace_marker(string, len, &dctx->apitrace_call_number); } static void |