mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 14:00:16 +01:00
panvk: Support shaderImageGatherExtended
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:
parent
f450807b68
commit
69a08fd9b2
3 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue