diff options
author | Jonathan Marek <[email protected]> | 2019-08-01 12:42:33 -0400 |
---|---|---|
committer | Jonathan Marek <[email protected]> | 2019-08-02 15:58:22 +0000 |
commit | e25388c97b67f626aa8135e84282312128d90f78 (patch) | |
tree | 8aa3b0fd8bcd39371622462c989942ae33fc13f1 /src/gallium/drivers/freedreno/freedreno_resource.c | |
parent | 6125c93e00b3188ea1a34db26475d877f49432a9 (diff) |
freedreno: align renderonly scanout buffers
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_resource.c')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_resource.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_resource.c b/src/gallium/drivers/freedreno/freedreno_resource.c index 3c411f5bc15..4d188c24d64 100644 --- a/src/gallium/drivers/freedreno/freedreno_resource.c +++ b/src/gallium/drivers/freedreno/freedreno_resource.c @@ -918,6 +918,9 @@ fd_resource_create_with_modifiers(struct pipe_screen *pscreen, struct renderonly_scanout *scanout; struct winsys_handle handle; + /* apply freedreno alignment requirement */ + scanout_templat.width0 = align(tmpl->width0, screen->gmem_alignw); + scanout = renderonly_scanout_for_resource(&scanout_templat, screen->ro, &handle); if (!scanout) |