Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gofman <pgofman@codeweavers.com>2021-02-26 20:24:23 +0300
committerAndrew Eikum <aeikum@codeweavers.com>2021-03-31 22:08:10 +0300
commit7c2bd9063640a050d0c5f3a244b197cc16ce44ef (patch)
tree72c7fcc7fde0a1c4b3a5fc104584ff9d3b2484e8 /wineopenxr/make_openxr
parent0a4a8b7a01681c20fd632164a99b2ad627ac08d7 (diff)
wineopenxr: Support XR_KHR_vulkan_enable2 extension.
Diffstat (limited to 'wineopenxr/make_openxr')
-rwxr-xr-xwineopenxr/make_openxr4
1 files changed, 3 insertions, 1 deletions
diff --git a/wineopenxr/make_openxr b/wineopenxr/make_openxr
index a3157cec..ff7bd67b 100755
--- a/wineopenxr/make_openxr
+++ b/wineopenxr/make_openxr
@@ -93,7 +93,6 @@ UNSUPPORTED_EXTENSIONS = [
"XR_KHR_display", # Needs WSI work.
"XR_KHR_surface_protected_capabilities",
"XR_KHR_loader_init",
- "XR_KHR_vulkan_enable2",
"XR_MSFT_perception_anchor_interop",
# Device extensions
@@ -166,8 +165,11 @@ FUNCTION_OVERRIDES = {
"xrGetD3D12GraphicsRequirementsKHR" : {"dispatch" : False, "driver" : True, "thunk" : False},
"xrGetVulkanGraphicsDeviceKHR" : {"dispatch" : True, "driver" : True, "thunk" : False},
+ "xrGetVulkanGraphicsDevice2KHR" : {"dispatch" : True, "driver" : True, "thunk" : False},
"xrGetVulkanDeviceExtensionsKHR" : {"dispatch" : True, "driver" : True, "thunk" : False},
"xrGetVulkanInstanceExtensionsKHR" : {"dispatch" : True, "driver" : True, "thunk" : False},
+ "xrCreateVulkanInstanceKHR" : {"dispatch" : True, "driver" : True, "thunk" : False},
+ "xrCreateVulkanDeviceKHR" : {"dispatch" : True, "driver" : True, "thunk" : False},
"xrPollEvent" : {"dispatch" : True, "driver" : True, "thunk" : False},
"xrEnumerateSwapchainImages" : {"dispatch" : True, "driver" : True, "thunk" : False},