mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
anv: enable VK_EXT_pipeline_library_group_handles
A noop for us. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Ivan Briano <ivan.briano@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20929>
This commit is contained in:
parent
461ccb00e1
commit
e8793f2a86
1 changed files with 8 additions and 0 deletions
|
|
@ -326,6 +326,7 @@ get_device_extensions(const struct anv_physical_device *device,
|
|||
.EXT_physical_device_drm = true,
|
||||
.EXT_pipeline_creation_cache_control = true,
|
||||
.EXT_pipeline_creation_feedback = true,
|
||||
.EXT_pipeline_library_group_handles = true,
|
||||
.EXT_post_depth_coverage = true,
|
||||
.EXT_primitives_generated_query = true,
|
||||
.EXT_primitive_topology_list_restart = true,
|
||||
|
|
@ -1573,6 +1574,13 @@ void anv_GetPhysicalDeviceFeatures2(
|
|||
break;
|
||||
}
|
||||
|
||||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_LIBRARY_GROUP_HANDLES_FEATURES_EXT: {
|
||||
VkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT *features =
|
||||
(VkPhysicalDevicePipelineLibraryGroupHandlesFeaturesEXT *)ext;
|
||||
features->pipelineLibraryGroupHandles = true;
|
||||
break;
|
||||
}
|
||||
|
||||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROVOKING_VERTEX_FEATURES_EXT: {
|
||||
VkPhysicalDeviceProvokingVertexFeaturesEXT *features =
|
||||
(VkPhysicalDeviceProvokingVertexFeaturesEXT *)ext;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue