mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
ddebug: fix parsing of the pipelined mode
Trivial. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
9ee67467c9
commit
c745beaf10
1 changed files with 1 additions and 1 deletions
|
|
@ -374,7 +374,7 @@ ddebug_screen_create(struct pipe_screen *screen)
|
|||
|
||||
if (sscanf(option+8, "%u", &apitrace_dump_call) != 1)
|
||||
return screen;
|
||||
} else if (!strncmp(option, "pipelined", 8)) {
|
||||
} else if (!strncmp(option, "pipelined", 9)) {
|
||||
mode = DD_DETECT_HANGS_PIPELINED;
|
||||
|
||||
if (sscanf(option+10, "%u", &timeout) != 1)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue