diff options
author | Nicolai Hähnle <[email protected]> | 2015-12-07 15:16:24 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2015-12-07 21:15:59 -0500 |
commit | d5a5dbd71f0e8756494809025ba2119efdf26373 (patch) | |
tree | a37f838dca639039b0d346d0551b5b12416926e8 | |
parent | f97f755192210ce3690e67abccefa133d398d373 (diff) |
radeonsi: last_gfx_fence is a winsys fence
Cc: "11.1" <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
-rw-r--r-- | src/gallium/drivers/radeonsi/si_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_debug.c b/src/gallium/drivers/radeonsi/si_debug.c index 0a4e0f9342e..cce665e85fa 100644 --- a/src/gallium/drivers/radeonsi/si_debug.c +++ b/src/gallium/drivers/radeonsi/si_debug.c @@ -668,7 +668,7 @@ void si_check_vm_faults(struct si_context *sctx) /* Use conservative timeout 800ms, after which we won't wait any * longer and assume the GPU is hung. */ - screen->fence_finish(screen, sctx->last_gfx_fence, 800*1000*1000); + sctx->b.ws->fence_wait(sctx->b.ws, sctx->last_gfx_fence, 800*1000*1000); if (!si_vm_fault_occured(sctx, &addr)) return; |