diff options
author | Eric Anholt <[email protected]> | 2015-06-29 22:32:03 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-07-14 11:31:57 -0700 |
commit | ab80519b3cd08401dff2d07343064a27f32b33ca (patch) | |
tree | 0aab90b69e08baf252e2fc2112258c46834480a2 /src/gallium/drivers/vc4/vc4_fence.c | |
parent | 759ed0bd03818c912e7f1fa62bafc50ef52ef291 (diff) |
vc4: Add perf debug for when we wait on BOs.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_fence.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_fence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_fence.c b/src/gallium/drivers/vc4/vc4_fence.c index f644bf9a04e..b6fb2a8a460 100644 --- a/src/gallium/drivers/vc4/vc4_fence.c +++ b/src/gallium/drivers/vc4/vc4_fence.c @@ -67,7 +67,7 @@ vc4_fence_finish(struct pipe_screen *pscreen, struct vc4_screen *screen = vc4_screen(pscreen); struct vc4_fence *f = (struct vc4_fence *)pf; - return vc4_wait_seqno(screen, f->seqno, timeout_ns); + return vc4_wait_seqno(screen, f->seqno, timeout_ns, "fence wait"); } struct vc4_fence * |