panvk: Support shaderImageGatherExtended
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Signed-off-by: Rebecca Mckeever <rebecca.mckeever@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34033>
This commit is contained in:
Rebecca Mckeever 2025-02-28 14:36:59 -08:00 committed by Marge Bot
parent f450807b68
commit 69a08fd9b2
3 changed files with 3 additions and 0 deletions

View file

@ -26,3 +26,4 @@ KHR_blend_equation_advanced on v3d
KHR_blend_equation_advanced_coherent on v3d
KHR_partial_update on etnaviv
VK_KHR_line_rasterization on panvk
shaderImageGatherExtended on panvk

View file

@ -297,6 +297,7 @@ get_features(const struct panvk_physical_device *device,
.textureCompressionETC2 = true,
.textureCompressionASTC_LDR = true,
.fragmentStoresAndAtomics = arch >= 10,
.shaderImageGatherExtended = true,
.shaderStorageImageExtendedFormats = true,
.shaderUniformBufferArrayDynamicIndexing = true,
.shaderSampledImageArrayDynamicIndexing = true,

View file

@ -361,6 +361,7 @@ panvk_preprocess_nir(UNUSED struct vk_physical_device *vk_pdev,
nir_lower_tex_options lower_tex_options = {
.lower_txs_lod = true,
.lower_txp = ~0,
.lower_tg4_offsets = true,
.lower_txd_cube_map = true,
.lower_invalid_implicit_lod = true,
};