Skip to content

Commit 9c99a1d

Browse files
BastiaanOlijfredinfinite23
authored andcommitted
Added some missing core entries for Godot
Fixed client count, we don't want to count components Add XR_MNDX_egl_enable support to Godot
1 parent 73c5452 commit 9c99a1d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

clients/godot.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"name": "Godot Core",
1616
"abbreviation": "Core",
1717
"extensions": [
18+
"XR_KHR_D3D12_enable",
1819
"XR_KHR_android_create_instance",
1920
"XR_KHR_android_surface_swapchain",
2021
"XR_KHR_binding_modification",
@@ -35,12 +36,15 @@
3536
"XR_EXT_hand_tracking",
3637
"XR_EXT_hand_joints_motion_range",
3738
"XR_EXT_hand_tracking_data_source",
39+
"XR_EXT_hp_mixed_reality_controller",
40+
"XR_EXT_interaction_render_model",
3841
"XR_EXT_local_floor",
3942
"XR_EXT_view_configuration_depth_range",
4043
"XR_EXT_palm_pose",
4144
"XR_EXT_performance_settings",
42-
"XR_EXT_hp_mixed_reality_controller",
45+
"XR_EXT_render_model",
4346
"XR_EXT_samsung_odyssey_controller",
47+
"XR_EXT_uuid",
4448
"XR_BD_controller_interaction",
4549
"XR_FB_touch_controller_proximity",
4650
"XR_FB_touch_controller_pro",
@@ -50,7 +54,8 @@
5054
"XR_HTC_hand_interaction",
5155
"XR_HTCX_vive_tracker_interaction",
5256
"XR_ML_ml2_controller_interaction",
53-
"XR_MSFT_hand_interaction"
57+
"XR_MSFT_hand_interaction",
58+
"XR_MNDX_egl_enable"
5459
]
5560
},
5661
{

openxr_inventory/extensions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ def compute_extension_support(
201201

202202
# Get all the client support
203203
for client in clients:
204-
client_count += len(client.get_extension_entry(extension_name))
204+
if len(client.get_extension_entry(extension_name)) > 0:
205+
client_count += 1
205206

206207
# Filter out the empty ones
207208
extension_support[extension_name] = ExtensionSupport(runtime_count, client_count)

0 commit comments

Comments
 (0)