spirv2dxil: Add some more supported caps

8-bit loads and stores work via lowering, but they do work

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22225>
This commit is contained in:
Jesse Natalie 2023-03-23 08:36:22 -07:00 committed by Marge Bot
parent 6d5ff875d2
commit e28328ca2c

View file

@ -49,9 +49,12 @@ spirv_to_nir_options = {
.float16 = true,
.int16 = true,
.storage_16bit = true,
.storage_8bit = true,
.descriptor_indexing = true,
.runtime_descriptor_array = true,
.descriptor_array_non_uniform_indexing = true,
.image_read_without_format = true,
.image_write_without_format = true,
},
.ubo_addr_format = nir_address_format_32bit_index_offset,
.ssbo_addr_format = nir_address_format_32bit_index_offset,