spirv_to_dxil: add missing SPIR-V capabilities

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30776>
This commit is contained in:
chyyran 2024-08-21 23:55:53 -04:00 committed by Marge Bot
parent 0e73926c20
commit 8c68eeb890

View file

@ -36,6 +36,8 @@
static const struct spirv_capabilities
spirv_caps = {
.Shader = true,
.Geometry = true,
.DrawParameters = true,
.MultiView = true,
.GroupNonUniform = true,
@ -72,6 +74,7 @@ spirv_caps = {
.StorageTexelBufferArrayNonUniformIndexingEXT = true,
.StorageImageReadWithoutFormat = true,
.StorageImageWriteWithoutFormat = true,
.ImageQuery = true,
.Int64 = true,
.Float64 = true,
.Tessellation = true,