mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
anv/formats: Disable I915_FORMAT_MOD_Y_TILED_CCS on TGL+
The format of the CCS has changed. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
d0fcc2dd50
commit
0eaf293b47
1 changed files with 5 additions and 0 deletions
|
|
@ -733,6 +733,11 @@ get_wsi_format_modifier_properties_list(const struct anv_physical_device *physic
|
|||
anv_format->planes[0].isl_format))
|
||||
continue;
|
||||
|
||||
/* Gen12's CCS layout changes compared to Gen9-11. */
|
||||
if (mod_info->modifier == I915_FORMAT_MOD_Y_TILED_CCS &&
|
||||
physical_device->info.gen >= 12)
|
||||
continue;
|
||||
|
||||
vk_outarray_append(&out, mod_props) {
|
||||
mod_props->modifier = modifiers[i];
|
||||
if (isl_drm_modifier_has_aux(modifiers[i]))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue