diff options
author | Marek Olšák <[email protected]> | 2016-06-30 02:11:04 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-07-05 00:47:12 +0200 |
commit | 642cf400aa806281720acbe599a35a6a176c04b3 (patch) | |
tree | 5c9ab7641deac96a45750b76511e033f7f4458ad /src/gallium/drivers/ddebug/dd_pipe.h | |
parent | 1daec2b795a2c029b89202a15142376ac701bc39 (diff) |
ddebug: add an option to dump info about a specific apitrace call
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/ddebug/dd_pipe.h')
-rw-r--r-- | src/gallium/drivers/ddebug/dd_pipe.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/ddebug/dd_pipe.h b/src/gallium/drivers/ddebug/dd_pipe.h index f94303de7e1..69d5c4e2216 100644 --- a/src/gallium/drivers/ddebug/dd_pipe.h +++ b/src/gallium/drivers/ddebug/dd_pipe.h @@ -35,7 +35,8 @@ enum dd_mode { DD_DETECT_HANGS, - DD_DUMP_ALL_CALLS + DD_DUMP_ALL_CALLS, + DD_DUMP_APITRACE_CALL, }; struct dd_screen @@ -47,6 +48,7 @@ struct dd_screen bool no_flush; bool verbose; unsigned skip_count; + unsigned apitrace_dump_call; }; struct dd_query |