aboutsummaryrefslogtreecommitdiff
path: root/scripts/generate_vulkan_wrapper.py
diff options
context:
space:
mode:
authorMike Schuchardt <mikes@lunarg.com>2021-08-30 09:19:23 -0700
committerMike Schuchardt <mikes@lunarg.com>2021-08-30 09:55:24 -0700
commit6c444b2c9f7b44fbfe246151d46f201cd1057000 (patch)
tree4b0a62f20a522e52c50efeb93a2a5c24f0c8a0a2 /scripts/generate_vulkan_wrapper.py
parent58051062663477240484c8904459762ad544ba18 (diff)
downloadusermoji-6c444b2c9f7b44fbfe246151d46f201cd1057000.tar.xz
build: Update to header 1.2.190
- Update known-good - Generate source
Diffstat (limited to 'scripts/generate_vulkan_wrapper.py')
-rwxr-xr-xscripts/generate_vulkan_wrapper.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/generate_vulkan_wrapper.py b/scripts/generate_vulkan_wrapper.py
index 90c6584c..8e39d991 100755
--- a/scripts/generate_vulkan_wrapper.py
+++ b/scripts/generate_vulkan_wrapper.py
@@ -559,6 +559,9 @@ VK_KHR_pipeline_executable_properties = Extension(name='VK_KHR_pipeline_executab
Command(name='vkGetPipelineExecutableInternalRepresentationsKHR', dispatch='VkDevice'),
])
+VK_KHR_shader_integer_dot_product = Extension(name='VK_KHR_shader_integer_dot_product', version=1, guard=None, commands=[
+])
+
VK_KHR_pipeline_library = Extension(name='VK_KHR_pipeline_library', version=1, guard=None, commands=[
])
@@ -1150,6 +1153,9 @@ VK_EXT_vertex_input_dynamic_state = Extension(name='VK_EXT_vertex_input_dynamic_
VK_EXT_physical_device_drm = Extension(name='VK_EXT_physical_device_drm', version=1, guard=None, commands=[
])
+VK_EXT_primitive_topology_list_restart = Extension(name='VK_EXT_primitive_topology_list_restart', version=1, guard=None, commands=[
+])
+
VK_HUAWEI_subpass_shading = Extension(name='VK_HUAWEI_subpass_shading', version=2, guard=None, commands=[
Command(name='vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI', dispatch='VkDevice'),
Command(name='vkCmdSubpassShadingHUAWEI', dispatch='VkCommandBuffer'),
@@ -1431,6 +1437,7 @@ extensions = [
VK_KHR_buffer_device_address,
VK_KHR_deferred_host_operations,
VK_KHR_pipeline_executable_properties,
+ VK_KHR_shader_integer_dot_product,
VK_KHR_pipeline_library,
VK_KHR_shader_non_semantic_info,
VK_KHR_present_id,
@@ -1581,6 +1588,7 @@ extensions = [
VK_VALVE_mutable_descriptor_type,
VK_EXT_vertex_input_dynamic_state,
VK_EXT_physical_device_drm,
+ VK_EXT_primitive_topology_list_restart,
VK_HUAWEI_subpass_shading,
VK_HUAWEI_invocation_mask,
VK_NV_external_memory_rdma,