mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
amdgpu/addrlib: allow tileSplitBytes greater than row size
Carrizo row size is 1K, while tileSplitBytes is 2K for a 4xAA 32bpp depth surface. Remove the sanity check that tileSplitBytes must be greater than row size. There could be performance loss but may be covered by non-split depth which enables tc-compatible read.
This commit is contained in:
parent
d52e0bbfe6
commit
47de94a794
1 changed files with 1 additions and 1 deletions
|
|
@ -994,7 +994,7 @@ BOOL_32 EgBasedAddrLib::SanityCheckMacroTiled(
|
|||
{
|
||||
if (pTileInfo->tileSplitBytes > m_rowSize)
|
||||
{
|
||||
valid = FALSE;
|
||||
ADDR_WARN(0, ("tileSplitBytes is bigger than row size"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue