mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-06-12 05:07:43 +02:00
wineopenxr: Update to 1.0.18 registry version.
This commit is contained in:

committed by
Andrew Eikum

parent
95b1dc2b0b
commit
9cf5ff5cec
@ -183,6 +183,12 @@ FUNCTION_OVERRIDES = {
|
||||
"xrDestroySceneObserverMSFT" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
"xrCreateSceneMSFT" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
"xrDestroySceneMSFT" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
|
||||
"xrCreateSpatialAnchorFromPersistedNameMSFT" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
"xrCreateSpatialAnchorStoreConnectionMSFT" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
"xrDestroySpatialAnchorStoreConnectionMSFT" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
"xrCreateFoveationProfileFB" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
"xrDestroyFoveationProfileFB" : {"dispatch" : True, "driver" : True, "thunk" : False},
|
||||
}
|
||||
|
||||
STRUCT_CHAIN_CONVERSIONS = [
|
||||
@ -892,6 +898,8 @@ class XrHandle(object):
|
||||
native_handle_name = "scene_observer_msft"
|
||||
if self.name == "XrSceneMSFT":
|
||||
native_handle_name = "scene_msft"
|
||||
if self.name == "XrSpatialAnchorStoreConnectionMSFT":
|
||||
native_handle_name = "spatial_anchor_store_connection"
|
||||
|
||||
if native_handle_name:
|
||||
return "((wine_{0} *){1})->{2}".format(self.name, name, native_handle_name)
|
||||
|
Reference in New Issue
Block a user