• Home
  • Raw
  • Download

Lines Matching refs:ws

59 	struct radeon_winsys *ws = rctx->ws;  in si_add_fence_dependency()  local
62 ws->cs_add_fence_dependency(rctx->dma.cs, fence); in si_add_fence_dependency()
63 ws->cs_add_fence_dependency(rctx->gfx.cs, fence); in si_add_fence_dependency()
70 struct radeon_winsys *ws = ((struct si_screen*)screen)->ws; in si_fence_reference() local
75 ws->fence_reference(&(*rdst)->gfx, NULL); in si_fence_reference()
76 ws->fence_reference(&(*rdst)->sdma, NULL); in si_fence_reference()
189 struct radeon_winsys *rws = ((struct si_screen*)screen)->ws; in si_fence_finish()
304 struct radeon_winsys *ws = sscreen->ws; in si_create_fence_fd() local
316 rfence->gfx = ws->fence_import_sync_file(ws, fd); in si_create_fence_fd()
329 struct radeon_winsys *ws = sscreen->ws; in si_fence_get_fd() local
344 sdma_fd = ws->fence_export_sync_file(ws, rfence->sdma); in si_fence_get_fd()
349 gfx_fd = ws->fence_export_sync_file(ws, rfence->gfx); in si_fence_get_fd()
360 return ws->export_signalled_sync_file(ws); in si_fence_get_fd()
378 struct radeon_winsys *ws = rctx->ws; in si_flush_from_st() local
401 ws->fence_reference(&gfx_fence, rctx->last_gfx_fence); in si_flush_from_st()
403 ws->cs_sync_flush(rctx->gfx.cs); in si_flush_from_st()
414 gfx_fence = rctx->ws->cs_get_next_fence(rctx->gfx.cs); in si_flush_from_st()
431 ws->fence_reference(&sdma_fence, NULL); in si_flush_from_st()
432 ws->fence_reference(&gfx_fence, NULL); in si_flush_from_st()
461 ws->cs_sync_flush(rctx->dma.cs); in si_flush_from_st()
462 ws->cs_sync_flush(rctx->gfx.cs); in si_flush_from_st()