mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
intel/blorp: Allow CCS copies of 1010102 formats
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
1978de66f7
commit
ccb44b8a94
1 changed files with 6 additions and 0 deletions
|
|
@ -2416,6 +2416,12 @@ get_ccs_compatible_uint_format(const struct isl_format_layout *fmtl)
|
|||
case ISL_FORMAT_R32_SNORM:
|
||||
return ISL_FORMAT_R32_UINT;
|
||||
|
||||
case ISL_FORMAT_B10G10R10A2_UNORM:
|
||||
case ISL_FORMAT_B10G10R10A2_UNORM_SRGB:
|
||||
case ISL_FORMAT_R10G10B10A2_UNORM:
|
||||
case ISL_FORMAT_R10G10B10A2_UINT:
|
||||
return ISL_FORMAT_R10G10B10A2_UINT;
|
||||
|
||||
default:
|
||||
unreachable("Not a compressible format");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue