anv/image: Drop redundant rejection of YCbCr formats with modifiers

The check in anv_get_image_format_properties() is already handled in
anv_get_image_format_features().

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Chad Versace 2020-08-08 19:29:47 -05:00
parent c9f2a74b5a
commit c892e24258
1 changed files with 0 additions and 5 deletions

View File

@ -1086,11 +1086,6 @@ anv_get_image_format_properties(
maxMipLevels = 1;
sampleCounts = VK_SAMPLE_COUNT_1_BIT;
/* Modifiers are not yet supported for YCbCr */
const struct anv_format *format = anv_get_format(info->format);
if (format->n_planes > 1)
goto unsupported;
if (isl_mod_info->aux_usage == ISL_AUX_USAGE_CCS_E &&
!anv_formats_ccs_e_compatible(devinfo, info->flags, info->format,
info->tiling, format_list_info)) {