mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 18:00:10 +01:00
anv: Enable stencil buffer compression on Gen12+
v2: (Nanley Chery) - Fix condition check. - Move aux_usage assignment after add_aux_state_tracking_buffer method. v3: (Nanley Chery) - Move stencil condition close to depth block. v4: (Nanley Chery) - Add DEBUG_NO_RBC condition. v5: (Nanley Chery) - Don't add CCS plane explicitly. - Use isl_surf_supports_ccs. v6: - Simplify condition (Nanley Chery) Signed-off-by: Sagar Ghuge <sagar.ghuge@intel.com> Reviewed-by: Nanley Chery <nanley.g.chery@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/2942>
This commit is contained in:
parent
dc22d6b3ab
commit
ddca93ddf7
1 changed files with 10 additions and 0 deletions
|
|
@ -426,6 +426,16 @@ add_aux_surface_if_supported(struct anv_device *device,
|
|||
image->planes[plane].aux_usage = ISL_AUX_USAGE_HIZ_CCS;
|
||||
}
|
||||
add_surface(image, &image->planes[plane].aux_surface, plane);
|
||||
} else if (aspect == VK_IMAGE_ASPECT_STENCIL_BIT) {
|
||||
|
||||
if (INTEL_DEBUG & DEBUG_NO_RBC)
|
||||
return VK_SUCCESS;
|
||||
|
||||
if (!isl_surf_supports_ccs(&device->isl_dev,
|
||||
&image->planes[plane].surface.isl))
|
||||
return VK_SUCCESS;
|
||||
|
||||
image->planes[plane].aux_usage = ISL_AUX_USAGE_STC_CCS;
|
||||
} else if ((aspect & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV) && image->samples == 1) {
|
||||
if (image->n_planes != 1) {
|
||||
/* Multiplanar images seem to hit a sampler bug with CCS and R16G16
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue