mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
panfrost: Allow max effective tile size of 64x64 on v12+
This is supported since v12 and we fixed the last remaining issues related to it. Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com> Acked-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34674>
This commit is contained in:
parent
943a59c8f9
commit
006f5c20bd
1 changed files with 2 additions and 2 deletions
|
|
@ -138,8 +138,8 @@ pan_arch(unsigned gpu_id)
|
|||
static inline unsigned
|
||||
panfrost_max_effective_tile_size(unsigned arch)
|
||||
{
|
||||
/* XXX: On v12+, the max effective tile size is 64x64 but it is possible to
|
||||
* overrun the internal depth buffer for now */
|
||||
if (arch >= 12)
|
||||
return 64 * 64;
|
||||
|
||||
if (arch >= 10)
|
||||
return 32 * 32;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue