.shaderCullDistance = true,
.shaderFloat64 = true,
.shaderInt64 = true,
- .shaderInt16 = !pdevice->use_aco || pdevice->rad_info.chip_class >= GFX8,
+ .shaderInt16 = true,
.sparseBinding = true,
.variableMultisampleRate = true,
.shaderResourceMinLod = true,
}
}
}
- bool int8_int16_enable = !device->physical_device->use_aco ||
- device->physical_device->rad_info.chip_class >= GFX8;
+ bool int8_enable = !device->physical_device->use_aco ||
+ device->physical_device->rad_info.chip_class >= GFX8;
const struct spirv_to_nir_options spirv_options = {
.lower_ubo_ssbo_access_to_offsets = true,
.caps = {
.image_ms_array = true,
.image_read_without_format = true,
.image_write_without_format = true,
- .int8 = int8_int16_enable,
- .int16 = int8_int16_enable,
+ .int8 = int8_enable,
+ .int16 = true,
.int64 = true,
.int64_atomics = true,
.min_lod = true,