panvk: update feature support

Turn on `imageCubeArray` and `fragmentStoresAndAtomics`, which we
already support (the latter only on v10 and later).

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32464>
This commit is contained in:
Eric R. Smith
2024-12-03 12:28:50 -04:00
committed by Marge Bot
parent f80ac64e8f
commit 605c173fbd

View File

@@ -272,6 +272,7 @@ get_features(const struct panvk_physical_device *device,
.depthBiasClamp = true,
.robustBufferAccess = true,
.fullDrawIndexUint32 = true,
.imageCubeArray = true,
.independentBlend = true,
.sampleRateShading = true,
.logicOp = true,
@@ -281,6 +282,7 @@ get_features(const struct panvk_physical_device *device,
.samplerAnisotropy = true,
.textureCompressionETC2 = true,
.textureCompressionASTC_LDR = true,
.fragmentStoresAndAtomics = arch >= 10,
.shaderUniformBufferArrayDynamicIndexing = true,
.shaderSampledImageArrayDynamicIndexing = true,
.shaderStorageBufferArrayDynamicIndexing = true,