Implementing OpenXR driver
This commit is contained in:
committed by
Rémi Verschelde
parent
65bae5a341
commit
a78a9fee71
27
modules/openxr/config.py
Normal file
27
modules/openxr/config.py
Normal file
@ -0,0 +1,27 @@
|
||||
def can_build(env, platform):
|
||||
if (
|
||||
platform == "linuxbsd" or platform == "windows"
|
||||
): # or platform == "android" -- temporarily disabled android support
|
||||
return env["openxr"]
|
||||
else:
|
||||
# not supported on these platforms
|
||||
return False
|
||||
|
||||
|
||||
def configure(env):
|
||||
pass
|
||||
|
||||
|
||||
def get_doc_classes():
|
||||
return [
|
||||
"OpenXRInterface",
|
||||
"OpenXRAction",
|
||||
"OpenXRActionSet",
|
||||
"OpenXRActionMap",
|
||||
"OpenXRInteractionProfile",
|
||||
"OpenXRIPBinding",
|
||||
]
|
||||
|
||||
|
||||
def get_doc_path():
|
||||
return "doc_classes"
|
||||
Reference in New Issue
Block a user