mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
intel/isl: Add support for I915_FORMAT_MOD_Y_TILED_CCS
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com> Reviewed-by: Chad Versace <chadversary@chromium.org>
This commit is contained in:
parent
51eb40d414
commit
cf2e92262b
2 changed files with 8 additions and 0 deletions
|
|
@ -33,6 +33,7 @@ AM_CPPFLAGS = \
|
|||
-I$(top_srcdir)/src/gtest/include \
|
||||
-I$(top_builddir)/src/intel \
|
||||
-I$(top_srcdir)/src/intel \
|
||||
-I$(top_srcdir)/include/drm-uapi \
|
||||
-I$(top_srcdir)/src/mapi \
|
||||
-I$(top_srcdir)/src/mesa \
|
||||
-I$(top_srcdir)/src/gallium/auxiliary \
|
||||
|
|
|
|||
|
|
@ -87,6 +87,13 @@ struct isl_drm_modifier_info modifier_info[] = {
|
|||
.name = "I915_FORMAT_MOD_Y_TILED",
|
||||
.tiling = ISL_TILING_Y0,
|
||||
},
|
||||
{
|
||||
.modifier = I915_FORMAT_MOD_Y_TILED_CCS,
|
||||
.name = "I915_FORMAT_MOD_Y_TILED_CCS",
|
||||
.tiling = ISL_TILING_Y0,
|
||||
.aux_usage = ISL_AUX_USAGE_CCS_E,
|
||||
.supports_clear_color = false,
|
||||
},
|
||||
};
|
||||
|
||||
const struct isl_drm_modifier_info *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue