radv: advertise VK_EXT_robustness2
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4775>
This commit is contained in:

committed by
Marge Bot

parent
0f1ead7b53
commit
0e6afbbe56
@@ -13,4 +13,4 @@ VK_KHR_8bit_storage for ACO on GFX8+
|
|||||||
VK_KHR_16bit_storage for ACO on GFX8+ (storageInputOutput16 is still unsupported)
|
VK_KHR_16bit_storage for ACO on GFX8+ (storageInputOutput16 is still unsupported)
|
||||||
shaderInt16 for ACO on GFX9+
|
shaderInt16 for ACO on GFX9+
|
||||||
VK_KHR_shader_float16_int8 for ACO on GFX8+ (shaderFloat16 is still unsupported)
|
VK_KHR_shader_float16_int8 for ACO on GFX8+ (shaderFloat16 is still unsupported)
|
||||||
VK_EXT_robustness2 on Intel
|
VK_EXT_robustness2 on Intel, RADV.
|
||||||
|
@@ -1255,6 +1255,14 @@ void radv_GetPhysicalDeviceFeatures2(
|
|||||||
features->overallocationBehavior = true;
|
features->overallocationBehavior = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT: {
|
||||||
|
VkPhysicalDeviceRobustness2FeaturesEXT *features =
|
||||||
|
(VkPhysicalDeviceRobustness2FeaturesEXT *)ext;
|
||||||
|
features->robustBufferAccess2 = true;
|
||||||
|
features->robustImageAccess2 = true;
|
||||||
|
features->nullDescriptor = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1886,6 +1894,13 @@ void radv_GetPhysicalDeviceProperties2(
|
|||||||
props->lineSubPixelPrecisionBits = 4;
|
props->lineSubPixelPrecisionBits = 4;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_PROPERTIES_EXT: {
|
||||||
|
VkPhysicalDeviceRobustness2PropertiesEXT *properties =
|
||||||
|
(VkPhysicalDeviceRobustness2PropertiesEXT *)ext;
|
||||||
|
properties->robustStorageBufferAccessSizeAlignment = 4;
|
||||||
|
properties->robustUniformBufferAccessSizeAlignment = 4;
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@@ -137,6 +137,7 @@ EXTENSIONS = [
|
|||||||
Extension('VK_EXT_pipeline_creation_feedback', 1, True),
|
Extension('VK_EXT_pipeline_creation_feedback', 1, True),
|
||||||
Extension('VK_EXT_post_depth_coverage', 1, 'device->rad_info.chip_class >= GFX10'),
|
Extension('VK_EXT_post_depth_coverage', 1, 'device->rad_info.chip_class >= GFX10'),
|
||||||
Extension('VK_EXT_queue_family_foreign', 1, True),
|
Extension('VK_EXT_queue_family_foreign', 1, True),
|
||||||
|
Extension('VK_EXT_robustness2', 1, True),
|
||||||
# Disable sample locations on GFX10 until the CTS failures have been resolved.
|
# Disable sample locations on GFX10 until the CTS failures have been resolved.
|
||||||
Extension('VK_EXT_sample_locations', 1, 'device->rad_info.chip_class < GFX10'),
|
Extension('VK_EXT_sample_locations', 1, 'device->rad_info.chip_class < GFX10'),
|
||||||
Extension('VK_EXT_sampler_filter_minmax', 1, True),
|
Extension('VK_EXT_sampler_filter_minmax', 1, True),
|
||||||
|
Reference in New Issue
Block a user