From: Marek Olšák Date: Mon, 8 Jul 2019 18:57:42 +0000 (-0400) Subject: radeonsi: use the correct buffer size in si_vid_clear_buffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=936e9fa9515d7ac22dc778701b52ff02ac350043;p=mesa.git radeonsi: use the correct buffer size in si_vid_clear_buffer Reviewed-by: Pierre-Eric Pelloux-Prayer Acked-by: Samuel Pitoiset --- diff --git a/src/gallium/drivers/radeon/radeon_video.c b/src/gallium/drivers/radeon/radeon_video.c index 06f0d132219..7777f888b05 100644 --- a/src/gallium/drivers/radeon/radeon_video.c +++ b/src/gallium/drivers/radeon/radeon_video.c @@ -122,7 +122,7 @@ void si_vid_clear_buffer(struct pipe_context *context, struct rvid_buffer* buffe { struct si_context *sctx = (struct si_context*)context; - si_sdma_clear_buffer(sctx, &buffer->res->b.b, 0, buffer->res->buf->size, 0); + si_sdma_clear_buffer(sctx, &buffer->res->b.b, 0, buffer->res->b.b.width0, 0); context->flush(context, NULL, 0); }