mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 11:10:10 +01:00
iris: handle the failure of converting unsupported yuv formats to isl
Signed-off-by: James Xiong <james.xiong@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
(cherry picked from commit d8569baaed)
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3898>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3898>
This commit is contained in:
parent
5a7ae6be76
commit
4d3f535ebb
2 changed files with 7 additions and 2 deletions
|
|
@ -338,9 +338,13 @@ iris_format_for_usage(const struct gen_device_info *devinfo,
|
|||
isl_surf_usage_flags_t usage)
|
||||
{
|
||||
enum isl_format format = iris_isl_format_for_pipe_format(pformat);
|
||||
const struct isl_format_layout *fmtl = isl_format_get_layout(format);
|
||||
struct isl_swizzle swizzle = ISL_SWIZZLE_IDENTITY;
|
||||
|
||||
if (format == ISL_FORMAT_UNSUPPORTED)
|
||||
return (struct iris_format_info) { .fmt = format, .swizzle = swizzle };
|
||||
|
||||
const struct isl_format_layout *fmtl = isl_format_get_layout(format);
|
||||
|
||||
if (!util_format_is_srgb(pformat)) {
|
||||
if (util_format_is_intensity(pformat)) {
|
||||
swizzle = ISL_SWIZZLE(RED, RED, RED, RED);
|
||||
|
|
|
|||
|
|
@ -85,7 +85,8 @@ modifier_is_supported(const struct gen_device_info *devinfo,
|
|||
|
||||
enum isl_format linear_format = isl_format_srgb_to_linear(rt_format);
|
||||
|
||||
if (!isl_format_supports_ccs_e(devinfo, linear_format))
|
||||
if (linear_format == ISL_FORMAT_UNSUPPORTED ||
|
||||
!isl_format_supports_ccs_e(devinfo, linear_format))
|
||||
return false;
|
||||
|
||||
return devinfo->gen >= 9 && devinfo->gen <= 11;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue