From: Lucas Stach Date: Fri, 9 Jun 2017 16:44:46 +0000 (+0200) Subject: etnaviv: pad scanout buffer size to RS alignment X-Git-Tag: upstream/18.1.0~7670 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b158ccf1d95157216bfc9252e498e46ba0257366;p=platform%2Fupstream%2Fmesa.git etnaviv: pad scanout buffer size to RS alignment This fixes failures to import the scanout buffer with screen resolutions that don't satisfy the RS alignment restrictions, like 1680x1050. Signed-off-by: Lucas Stach Reviewed-by: Christian Gmeiner Reviewed-by: Philipp Zabel Reviewed-by: Wladimir J. van der Laan --- diff --git a/src/gallium/drivers/etnaviv/etnaviv_resource.c b/src/gallium/drivers/etnaviv/etnaviv_resource.c index 1cd906d..8e39461 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_resource.c +++ b/src/gallium/drivers/etnaviv/etnaviv_resource.c @@ -212,9 +212,15 @@ etna_resource_alloc(struct pipe_screen *pscreen, unsigned layout, rsc->ts_bo = 0; /* TS is only created when first bound to surface */ if (templat->bind & PIPE_BIND_SCANOUT) { + struct pipe_resource scanout_templat = *templat; struct winsys_handle handle; - rsc->scanout = renderonly_scanout_for_resource(&rsc->base, screen->ro, - &handle); + + /* pad scanout buffer size to be compatible with the RS */ + etna_adjust_rs_align(screen->specs.pixel_pipes, + &scanout_templat.width0, &scanout_templat.height0); + + rsc->scanout = renderonly_scanout_for_resource(&scanout_templat, + screen->ro, &handle); if (!rsc->scanout) goto free_rsc;