X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fdrivers%2Fradeonsi%2Fsi_dma_cs.c;h=a0dec39b6bb7fe5c56c79f5d74874c247ac71e4e;hb=6703fec58cc38d18b2268544889659ea049060aa;hp=1eefaeb6ad583cd0d60eb9b74a935affff3f7837;hpb=39b4fdc45f85703daa7fe3804b52b555ebf9f080;p=mesa.git diff --git a/src/gallium/drivers/radeonsi/si_dma_cs.c b/src/gallium/drivers/radeonsi/si_dma_cs.c index 1eefaeb6ad5..a0dec39b6bb 100644 --- a/src/gallium/drivers/radeonsi/si_dma_cs.c +++ b/src/gallium/drivers/radeonsi/si_dma_cs.c @@ -26,7 +26,7 @@ static void si_dma_emit_wait_idle(struct si_context *sctx) { - struct radeon_winsys_cs *cs = sctx->dma_cs; + struct radeon_cmdbuf *cs = sctx->dma_cs; /* NOP waits for idle on Evergreen and later. */ if (sctx->chip_class >= CIK) @@ -109,7 +109,7 @@ void si_need_dma_space(struct si_context *ctx, unsigned num_dw, void si_flush_dma_cs(struct si_context *ctx, unsigned flags, struct pipe_fence_handle **fence) { - struct radeon_winsys_cs *cs = ctx->dma_cs; + struct radeon_cmdbuf *cs = ctx->dma_cs; struct radeon_saved_cs saved; bool check_vm = (ctx->screen->debug_flags & DBG(CHECK_VM)) != 0;