mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-18 15:08:24 +02:00
ac/surface: Fix depth import on GFX6-GFX8.
Lets just do depth interop imports by convention between radv and radeonsi for now. The only thing using this should be Vulkan interop anyway. CC: mesa-stable Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6617>
This commit is contained in:
parent
f63ffc18e7
commit
ecc19e9819
1 changed files with 2 additions and 1 deletions
|
|
@ -975,7 +975,8 @@ static int gfx6_compute_surface(ADDR_HANDLE addrlib, const struct radeon_info *i
|
|||
|
||||
/* Set preferred macrotile parameters. This is usually required
|
||||
* for shared resources. This is for 2D tiling only. */
|
||||
if (AddrSurfInfoIn.tileMode >= ADDR_TM_2D_TILED_THIN1 && surf->u.legacy.bankw &&
|
||||
if (!(surf->flags & RADEON_SURF_Z_OR_SBUFFER) &&
|
||||
AddrSurfInfoIn.tileMode >= ADDR_TM_2D_TILED_THIN1 && surf->u.legacy.bankw &&
|
||||
surf->u.legacy.bankh && surf->u.legacy.mtilea && surf->u.legacy.tile_split) {
|
||||
/* If any of these parameters are incorrect, the calculation
|
||||
* will fail. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue