forked from avaer/node-openvr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheaders.js
1131 lines (1131 loc) · 47.1 KB
/
headers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable */
module.exports = {
"EVREye": {
"Eye_Left": 0,
"Eye_Right": 1
},
"ETextureType": {
"TextureType_Invalid": -1,
"TextureType_DirectX": 0,
"TextureType_OpenGL": 1,
"TextureType_Vulkan": 2,
"TextureType_IOSurface": 3,
"TextureType_DirectX12": 4,
"TextureType_DXGISharedHandle": 5,
"TextureType_Metal": 6
},
"EColorSpace": {
"ColorSpace_Auto": 0,
"ColorSpace_Gamma": 1,
"ColorSpace_Linear": 2
},
"ETrackingResult": {
"TrackingResult_Uninitialized": 1,
"TrackingResult_Calibrating_InProgress": 100,
"TrackingResult_Calibrating_OutOfRange": 101,
"TrackingResult_Running_OK": 200,
"TrackingResult_Running_OutOfRange": 201
},
"ETrackedDeviceClass": {
"TrackedDeviceClass_Invalid": 0,
"TrackedDeviceClass_HMD": 1,
"TrackedDeviceClass_Controller": 2,
"TrackedDeviceClass_GenericTracker": 3,
"TrackedDeviceClass_TrackingReference": 4,
"TrackedDeviceClass_DisplayRedirect": 5,
"TrackedDeviceClass_Max": 6
},
"ETrackedControllerRole": {
"TrackedControllerRole_Invalid": 0,
"TrackedControllerRole_LeftHand": 1,
"TrackedControllerRole_RightHand": 2,
"TrackedControllerRole_OptOut": 3,
"TrackedControllerRole_Max": 4
},
"ETrackingUniverseOrigin": {
"TrackingUniverseSeated": 0,
"TrackingUniverseStanding": 1,
"TrackingUniverseRawAndUncalibrated": 2
},
"ETrackedDeviceProperty": {
"Prop_Invalid": 0,
"Prop_TrackingSystemName_String": 1000,
"Prop_ModelNumber_String": 1001,
"Prop_SerialNumber_String": 1002,
"Prop_RenderModelName_String": 1003,
"Prop_WillDriftInYaw_Bool": 1004,
"Prop_ManufacturerName_String": 1005,
"Prop_TrackingFirmwareVersion_String": 1006,
"Prop_HardwareRevision_String": 1007,
"Prop_AllWirelessDongleDescriptions_String": 1008,
"Prop_ConnectedWirelessDongle_String": 1009,
"Prop_DeviceIsWireless_Bool": 1010,
"Prop_DeviceIsCharging_Bool": 1011,
"Prop_DeviceBatteryPercentage_Float": 1012,
"Prop_StatusDisplayTransform_Matrix34": 1013,
"Prop_Firmware_UpdateAvailable_Bool": 1014,
"Prop_Firmware_ManualUpdate_Bool": 1015,
"Prop_Firmware_ManualUpdateURL_String": 1016,
"Prop_HardwareRevision_Uint64": 1017,
"Prop_FirmwareVersion_Uint64": 1018,
"Prop_FPGAVersion_Uint64": 1019,
"Prop_VRCVersion_Uint64": 1020,
"Prop_RadioVersion_Uint64": 1021,
"Prop_DongleVersion_Uint64": 1022,
"Prop_BlockServerShutdown_Bool": 1023,
"Prop_CanUnifyCoordinateSystemWithHmd_Bool": 1024,
"Prop_ContainsProximitySensor_Bool": 1025,
"Prop_DeviceProvidesBatteryStatus_Bool": 1026,
"Prop_DeviceCanPowerOff_Bool": 1027,
"Prop_Firmware_ProgrammingTarget_String": 1028,
"Prop_DeviceClass_Int32": 1029,
"Prop_HasCamera_Bool": 1030,
"Prop_DriverVersion_String": 1031,
"Prop_Firmware_ForceUpdateRequired_Bool": 1032,
"Prop_ViveSystemButtonFixRequired_Bool": 1033,
"Prop_ParentDriver_Uint64": 1034,
"Prop_ResourceRoot_String": 1035,
"Prop_RegisteredDeviceType_String": 1036,
"Prop_InputProfilePath_String": 1037,
"Prop_NeverTracked_Bool": 1038,
"Prop_NumCameras_Int32": 1039,
"Prop_CameraFrameLayout_Int32": 1040,
"Prop_ReportsTimeSinceVSync_Bool": 2000,
"Prop_SecondsFromVsyncToPhotons_Float": 2001,
"Prop_DisplayFrequency_Float": 2002,
"Prop_UserIpdMeters_Float": 2003,
"Prop_CurrentUniverseId_Uint64": 2004,
"Prop_PreviousUniverseId_Uint64": 2005,
"Prop_DisplayFirmwareVersion_Uint64": 2006,
"Prop_IsOnDesktop_Bool": 2007,
"Prop_DisplayMCType_Int32": 2008,
"Prop_DisplayMCOffset_Float": 2009,
"Prop_DisplayMCScale_Float": 2010,
"Prop_EdidVendorID_Int32": 2011,
"Prop_DisplayMCImageLeft_String": 2012,
"Prop_DisplayMCImageRight_String": 2013,
"Prop_DisplayGCBlackClamp_Float": 2014,
"Prop_EdidProductID_Int32": 2015,
"Prop_CameraToHeadTransform_Matrix34": 2016,
"Prop_DisplayGCType_Int32": 2017,
"Prop_DisplayGCOffset_Float": 2018,
"Prop_DisplayGCScale_Float": 2019,
"Prop_DisplayGCPrescale_Float": 2020,
"Prop_DisplayGCImage_String": 2021,
"Prop_LensCenterLeftU_Float": 2022,
"Prop_LensCenterLeftV_Float": 2023,
"Prop_LensCenterRightU_Float": 2024,
"Prop_LensCenterRightV_Float": 2025,
"Prop_UserHeadToEyeDepthMeters_Float": 2026,
"Prop_CameraFirmwareVersion_Uint64": 2027,
"Prop_CameraFirmwareDescription_String": 2028,
"Prop_DisplayFPGAVersion_Uint64": 2029,
"Prop_DisplayBootloaderVersion_Uint64": 2030,
"Prop_DisplayHardwareVersion_Uint64": 2031,
"Prop_AudioFirmwareVersion_Uint64": 2032,
"Prop_CameraCompatibilityMode_Int32": 2033,
"Prop_ScreenshotHorizontalFieldOfViewDegrees_Float": 2034,
"Prop_ScreenshotVerticalFieldOfViewDegrees_Float": 2035,
"Prop_DisplaySuppressed_Bool": 2036,
"Prop_DisplayAllowNightMode_Bool": 2037,
"Prop_DisplayMCImageWidth_Int32": 2038,
"Prop_DisplayMCImageHeight_Int32": 2039,
"Prop_DisplayMCImageNumChannels_Int32": 2040,
"Prop_DisplayMCImageData_Binary": 2041,
"Prop_SecondsFromPhotonsToVblank_Float": 2042,
"Prop_DriverDirectModeSendsVsyncEvents_Bool": 2043,
"Prop_DisplayDebugMode_Bool": 2044,
"Prop_GraphicsAdapterLuid_Uint64": 2045,
"Prop_DriverProvidedChaperonePath_String": 2048,
"Prop_ExpectedTrackingReferenceCount_Int32": 2049,
"Prop_ExpectedControllerCount_Int32": 2050,
"Prop_NamedIconPathControllerLeftDeviceOff_String": 2051,
"Prop_NamedIconPathControllerRightDeviceOff_String": 2052,
"Prop_NamedIconPathTrackingReferenceDeviceOff_String": 2053,
"Prop_DoNotApplyPrediction_Bool": 2054,
"Prop_CameraToHeadTransforms_Matrix34_Array": 2055,
"Prop_DistortionMeshResolution_Int32": 2056,
"Prop_DriverIsDrawingControllers_Bool": 2057,
"Prop_DriverRequestsApplicationPause_Bool": 2058,
"Prop_DriverRequestsReducedRendering_Bool": 2059,
"Prop_MinimumIpdStepMeters_Float": 2060,
"Prop_AudioBridgeFirmwareVersion_Uint64": 2061,
"Prop_ImageBridgeFirmwareVersion_Uint64": 2062,
"Prop_ImuToHeadTransform_Matrix34": 2063,
"Prop_ImuFactoryGyroBias_Vector3": 2064,
"Prop_ImuFactoryGyroScale_Vector3": 2065,
"Prop_ImuFactoryAccelerometerBias_Vector3": 2066,
"Prop_ImuFactoryAccelerometerScale_Vector3": 2067,
"Prop_ConfigurationIncludesLighthouse20Features_Bool": 2069,
"Prop_DriverRequestedMuraCorrectionMode_Int32": 2200,
"Prop_DriverRequestedMuraFeather_InnerLeft_Int32": 2201,
"Prop_DriverRequestedMuraFeather_InnerRight_Int32": 2202,
"Prop_DriverRequestedMuraFeather_InnerTop_Int32": 2203,
"Prop_DriverRequestedMuraFeather_InnerBottom_Int32": 2204,
"Prop_DriverRequestedMuraFeather_OuterLeft_Int32": 2205,
"Prop_DriverRequestedMuraFeather_OuterRight_Int32": 2206,
"Prop_DriverRequestedMuraFeather_OuterTop_Int32": 2207,
"Prop_DriverRequestedMuraFeather_OuterBottom_Int32": 2208,
"Prop_AttachedDeviceId_String": 3000,
"Prop_SupportedButtons_Uint64": 3001,
"Prop_Axis0Type_Int32": 3002,
"Prop_Axis1Type_Int32": 3003,
"Prop_Axis2Type_Int32": 3004,
"Prop_Axis3Type_Int32": 3005,
"Prop_Axis4Type_Int32": 3006,
"Prop_ControllerRoleHint_Int32": 3007,
"Prop_FieldOfViewLeftDegrees_Float": 4000,
"Prop_FieldOfViewRightDegrees_Float": 4001,
"Prop_FieldOfViewTopDegrees_Float": 4002,
"Prop_FieldOfViewBottomDegrees_Float": 4003,
"Prop_TrackingRangeMinimumMeters_Float": 4004,
"Prop_TrackingRangeMaximumMeters_Float": 4005,
"Prop_ModeLabel_String": 4006,
"Prop_IconPathName_String": 5000,
"Prop_NamedIconPathDeviceOff_String": 5001,
"Prop_NamedIconPathDeviceSearching_String": 5002,
"Prop_NamedIconPathDeviceSearchingAlert_String": 5003,
"Prop_NamedIconPathDeviceReady_String": 5004,
"Prop_NamedIconPathDeviceReadyAlert_String": 5005,
"Prop_NamedIconPathDeviceNotReady_String": 5006,
"Prop_NamedIconPathDeviceStandby_String": 5007,
"Prop_NamedIconPathDeviceAlertLow_String": 5008,
"Prop_DisplayHiddenArea_Binary_Start": 5100,
"Prop_DisplayHiddenArea_Binary_End": 5150,
"Prop_ParentContainer": 5151,
"Prop_UserConfigPath_String": 6000,
"Prop_InstallPath_String": 6001,
"Prop_HasDisplayComponent_Bool": 6002,
"Prop_HasControllerComponent_Bool": 6003,
"Prop_HasCameraComponent_Bool": 6004,
"Prop_HasDriverDirectModeComponent_Bool": 6005,
"Prop_HasVirtualDisplayComponent_Bool": 6006,
"Prop_HasSpatialAnchorsSupport_Bool": 6007,
"Prop_ControllerType_String": 7000,
"Prop_LegacyInputProfile_String": 7001,
"Prop_VendorSpecific_Reserved_Start": 10000,
"Prop_VendorSpecific_Reserved_End": 10999,
"Prop_TrackedDeviceProperty_Max": 1000000
},
"ETrackedPropertyError": {
"TrackedProp_Success": 0,
"TrackedProp_WrongDataType": 1,
"TrackedProp_WrongDeviceClass": 2,
"TrackedProp_BufferTooSmall": 3,
"TrackedProp_UnknownProperty": 4,
"TrackedProp_InvalidDevice": 5,
"TrackedProp_CouldNotContactServer": 6,
"TrackedProp_ValueNotProvidedByDevice": 7,
"TrackedProp_StringExceedsMaximumLength": 8,
"TrackedProp_NotYetAvailable": 9,
"TrackedProp_PermissionDenied": 10,
"TrackedProp_InvalidOperation": 11,
"TrackedProp_CannotWriteToWildcards": 12
},
"EVRSubmitFlags": {
"Submit_Default": 0,
"Submit_LensDistortionAlreadyApplied": 1,
"Submit_GlRenderBuffer": 2,
"Submit_Reserved": 4,
"Submit_TextureWithPose": 8,
"Submit_TextureWithDepth": 16
},
"EVRState": {
"VRState_Undefined": -1,
"VRState_Off": 0,
"VRState_Searching": 1,
"VRState_Searching_Alert": 2,
"VRState_Ready": 3,
"VRState_Ready_Alert": 4,
"VRState_NotReady": 5,
"VRState_Standby": 6,
"VRState_Ready_Alert_Low": 7
},
"EVREventType": {
"VREvent_None": 0,
"VREvent_TrackedDeviceActivated": 100,
"VREvent_TrackedDeviceDeactivated": 101,
"VREvent_TrackedDeviceUpdated": 102,
"VREvent_TrackedDeviceUserInteractionStarted": 103,
"VREvent_TrackedDeviceUserInteractionEnded": 104,
"VREvent_IpdChanged": 105,
"VREvent_EnterStandbyMode": 106,
"VREvent_LeaveStandbyMode": 107,
"VREvent_TrackedDeviceRoleChanged": 108,
"VREvent_WatchdogWakeUpRequested": 109,
"VREvent_LensDistortionChanged": 110,
"VREvent_PropertyChanged": 111,
"VREvent_WirelessDisconnect": 112,
"VREvent_WirelessReconnect": 113,
"VREvent_ButtonPress": 200,
"VREvent_ButtonUnpress": 201,
"VREvent_ButtonTouch": 202,
"VREvent_ButtonUntouch": 203,
"VREvent_DualAnalog_Press": 250,
"VREvent_DualAnalog_Unpress": 251,
"VREvent_DualAnalog_Touch": 252,
"VREvent_DualAnalog_Untouch": 253,
"VREvent_DualAnalog_Move": 254,
"VREvent_DualAnalog_ModeSwitch1": 255,
"VREvent_DualAnalog_ModeSwitch2": 256,
"VREvent_DualAnalog_Cancel": 257,
"VREvent_MouseMove": 300,
"VREvent_MouseButtonDown": 301,
"VREvent_MouseButtonUp": 302,
"VREvent_FocusEnter": 303,
"VREvent_FocusLeave": 304,
"VREvent_Scroll": 305,
"VREvent_TouchPadMove": 306,
"VREvent_OverlayFocusChanged": 307,
"VREvent_InputFocusCaptured": 400,
"VREvent_InputFocusReleased": 401,
"VREvent_SceneFocusLost": 402,
"VREvent_SceneFocusGained": 403,
"VREvent_SceneApplicationChanged": 404,
"VREvent_SceneFocusChanged": 405,
"VREvent_InputFocusChanged": 406,
"VREvent_SceneApplicationSecondaryRenderingStarted": 407,
"VREvent_SceneApplicationUsingWrongGraphicsAdapter": 408,
"VREvent_ActionBindingReloaded": 409,
"VREvent_HideRenderModels": 410,
"VREvent_ShowRenderModels": 411,
"VREvent_ConsoleOpened": 420,
"VREvent_ConsoleClosed": 421,
"VREvent_OverlayShown": 500,
"VREvent_OverlayHidden": 501,
"VREvent_DashboardActivated": 502,
"VREvent_DashboardDeactivated": 503,
"VREvent_DashboardThumbSelected": 504,
"VREvent_DashboardRequested": 505,
"VREvent_ResetDashboard": 506,
"VREvent_RenderToast": 507,
"VREvent_ImageLoaded": 508,
"VREvent_ShowKeyboard": 509,
"VREvent_HideKeyboard": 510,
"VREvent_OverlayGamepadFocusGained": 511,
"VREvent_OverlayGamepadFocusLost": 512,
"VREvent_OverlaySharedTextureChanged": 513,
"VREvent_ScreenshotTriggered": 516,
"VREvent_ImageFailed": 517,
"VREvent_DashboardOverlayCreated": 518,
"VREvent_SwitchGamepadFocus": 519,
"VREvent_RequestScreenshot": 520,
"VREvent_ScreenshotTaken": 521,
"VREvent_ScreenshotFailed": 522,
"VREvent_SubmitScreenshotToDashboard": 523,
"VREvent_ScreenshotProgressToDashboard": 524,
"VREvent_PrimaryDashboardDeviceChanged": 525,
"VREvent_RoomViewShown": 526,
"VREvent_RoomViewHidden": 527,
"VREvent_Notification_Shown": 600,
"VREvent_Notification_Hidden": 601,
"VREvent_Notification_BeginInteraction": 602,
"VREvent_Notification_Destroyed": 603,
"VREvent_Quit": 700,
"VREvent_ProcessQuit": 701,
"VREvent_QuitAborted_UserPrompt": 702,
"VREvent_QuitAcknowledged": 703,
"VREvent_DriverRequestedQuit": 704,
"VREvent_ChaperoneDataHasChanged": 800,
"VREvent_ChaperoneUniverseHasChanged": 801,
"VREvent_ChaperoneTempDataHasChanged": 802,
"VREvent_ChaperoneSettingsHaveChanged": 803,
"VREvent_SeatedZeroPoseReset": 804,
"VREvent_AudioSettingsHaveChanged": 820,
"VREvent_BackgroundSettingHasChanged": 850,
"VREvent_CameraSettingsHaveChanged": 851,
"VREvent_ReprojectionSettingHasChanged": 852,
"VREvent_ModelSkinSettingsHaveChanged": 853,
"VREvent_EnvironmentSettingsHaveChanged": 854,
"VREvent_PowerSettingsHaveChanged": 855,
"VREvent_EnableHomeAppSettingsHaveChanged": 856,
"VREvent_SteamVRSectionSettingChanged": 857,
"VREvent_LighthouseSectionSettingChanged": 858,
"VREvent_NullSectionSettingChanged": 859,
"VREvent_UserInterfaceSectionSettingChanged": 860,
"VREvent_NotificationsSectionSettingChanged": 861,
"VREvent_KeyboardSectionSettingChanged": 862,
"VREvent_PerfSectionSettingChanged": 863,
"VREvent_DashboardSectionSettingChanged": 864,
"VREvent_WebInterfaceSectionSettingChanged": 865,
"VREvent_TrackersSectionSettingChanged": 866,
"VREvent_StatusUpdate": 900,
"VREvent_WebInterface_InstallDriverCompleted": 950,
"VREvent_MCImageUpdated": 1000,
"VREvent_FirmwareUpdateStarted": 1100,
"VREvent_FirmwareUpdateFinished": 1101,
"VREvent_KeyboardClosed": 1200,
"VREvent_KeyboardCharInput": 1201,
"VREvent_KeyboardDone": 1202,
"VREvent_ApplicationTransitionStarted": 1300,
"VREvent_ApplicationTransitionAborted": 1301,
"VREvent_ApplicationTransitionNewAppStarted": 1302,
"VREvent_ApplicationListUpdated": 1303,
"VREvent_ApplicationMimeTypeLoad": 1304,
"VREvent_ApplicationTransitionNewAppLaunchComplete": 1305,
"VREvent_ProcessConnected": 1306,
"VREvent_ProcessDisconnected": 1307,
"VREvent_Compositor_MirrorWindowShown": 1400,
"VREvent_Compositor_MirrorWindowHidden": 1401,
"VREvent_Compositor_ChaperoneBoundsShown": 1410,
"VREvent_Compositor_ChaperoneBoundsHidden": 1411,
"VREvent_TrackedCamera_StartVideoStream": 1500,
"VREvent_TrackedCamera_StopVideoStream": 1501,
"VREvent_TrackedCamera_PauseVideoStream": 1502,
"VREvent_TrackedCamera_ResumeVideoStream": 1503,
"VREvent_TrackedCamera_EditingSurface": 1550,
"VREvent_PerformanceTest_EnableCapture": 1600,
"VREvent_PerformanceTest_DisableCapture": 1601,
"VREvent_PerformanceTest_FidelityLevel": 1602,
"VREvent_MessageOverlay_Closed": 1650,
"VREvent_MessageOverlayCloseRequested": 1651,
"VREvent_Input_HapticVibration": 1700,
"VREvent_Input_BindingLoadFailed": 1701,
"VREvent_Input_BindingLoadSuccessful": 1702,
"VREvent_Input_ActionManifestReloaded": 1703,
"VREvent_Input_ActionManifestLoadFailed": 1704,
"VREvent_SpatialAnchors_PoseUpdated": 1800,
"VREvent_SpatialAnchors_DescriptorUpdated": 1801,
"VREvent_SpatialAnchors_RequestPoseUpdate": 1802,
"VREvent_SpatialAnchors_RequestDescriptorUpdate": 1803,
"VREvent_VendorSpecific_Reserved_Start": 10000,
"VREvent_VendorSpecific_Reserved_End": 19999
},
"EDeviceActivityLevel": {
"k_EDeviceActivityLevel_Unknown": -1,
"k_EDeviceActivityLevel_Idle": 0,
"k_EDeviceActivityLevel_UserInteraction": 1,
"k_EDeviceActivityLevel_UserInteraction_Timeout": 2,
"k_EDeviceActivityLevel_Standby": 3
},
"EVRButtonId": {
"k_EButton_System": 0,
"k_EButton_ApplicationMenu": 1,
"k_EButton_Grip": 2,
"k_EButton_DPad_Left": 3,
"k_EButton_DPad_Up": 4,
"k_EButton_DPad_Right": 5,
"k_EButton_DPad_Down": 6,
"k_EButton_A": 7,
"k_EButton_ProximitySensor": 31,
"k_EButton_Axis0": 32,
"k_EButton_Axis1": 33,
"k_EButton_Axis2": 34,
"k_EButton_Axis3": 35,
"k_EButton_Axis4": 36,
"k_EButton_SteamVR_Touchpad": 32,
"k_EButton_SteamVR_Trigger": 33,
"k_EButton_Dashboard_Back": 2,
"k_EButton_Knuckles_A": 2,
"k_EButton_Knuckles_B": 1,
"k_EButton_Knuckles_JoyStick": 35,
"k_EButton_Max": 64
},
"EVRMouseButton": {
"VRMouseButton_Left": 1,
"VRMouseButton_Right": 2,
"VRMouseButton_Middle": 4
},
"EDualAnalogWhich": {
"k_EDualAnalog_Left": 0,
"k_EDualAnalog_Right": 1
},
"EVRInputError": {
"VRInputError_None": 0,
"VRInputError_NameNotFound": 1,
"VRInputError_WrongType": 2,
"VRInputError_InvalidHandle": 3,
"VRInputError_InvalidParam": 4,
"VRInputError_NoSteam": 5,
"VRInputError_MaxCapacityReached": 6,
"VRInputError_IPCError": 7,
"VRInputError_NoActiveActionSet": 8,
"VRInputError_InvalidDevice": 9,
"VRInputError_InvalidSkeleton": 10,
"VRInputError_InvalidBoneCount": 11,
"VRInputError_InvalidCompressedData": 12,
"VRInputError_NoData": 13,
"VRInputError_BufferTooSmall": 14,
"VRInputError_MismatchedActionManifest": 15,
"VRInputError_MissingSkeletonData": 16
},
"EVRSpatialAnchorError": {
"VRSpatialAnchorError_Success": 0,
"VRSpatialAnchorError_Internal": 1,
"VRSpatialAnchorError_UnknownHandle": 2,
"VRSpatialAnchorError_ArrayTooSmall": 3,
"VRSpatialAnchorError_InvalidDescriptorChar": 4,
"VRSpatialAnchorError_NotYetAvailable": 5,
"VRSpatialAnchorError_NotAvailableInThisUniverse": 6,
"VRSpatialAnchorError_PermanentlyUnavailable": 7,
"VRSpatialAnchorError_WrongDriver": 8,
"VRSpatialAnchorError_DescriptorTooLong": 9,
"VRSpatialAnchorError_Unknown": 10,
"VRSpatialAnchorError_NoRoomCalibration": 11,
"VRSpatialAnchorError_InvalidArgument": 12,
"VRSpatialAnchorError_UnknownDriver": 13
},
"EHiddenAreaMeshType": {
"k_eHiddenAreaMesh_Standard": 0,
"k_eHiddenAreaMesh_Inverse": 1,
"k_eHiddenAreaMesh_LineLoop": 2,
"k_eHiddenAreaMesh_Max": 3
},
"EVRControllerAxisType": {
"k_eControllerAxis_None": 0,
"k_eControllerAxis_TrackPad": 1,
"k_eControllerAxis_Joystick": 2,
"k_eControllerAxis_Trigger": 3
},
"EVRControllerEventOutputType": {
"ControllerEventOutput_OSEvents": 0,
"ControllerEventOutput_VREvents": 1
},
"ECollisionBoundsStyle": {
"COLLISION_BOUNDS_STYLE_BEGINNER": 0,
"COLLISION_BOUNDS_STYLE_INTERMEDIATE": 1,
"COLLISION_BOUNDS_STYLE_SQUARES": 2,
"COLLISION_BOUNDS_STYLE_ADVANCED": 3,
"COLLISION_BOUNDS_STYLE_NONE": 4,
"COLLISION_BOUNDS_STYLE_COUNT": 5
},
"EVROverlayError": {
"VROverlayError_None": 0,
"VROverlayError_UnknownOverlay": 10,
"VROverlayError_InvalidHandle": 11,
"VROverlayError_PermissionDenied": 12,
"VROverlayError_OverlayLimitExceeded": 13,
"VROverlayError_WrongVisibilityType": 14,
"VROverlayError_KeyTooLong": 15,
"VROverlayError_NameTooLong": 16,
"VROverlayError_KeyInUse": 17,
"VROverlayError_WrongTransformType": 18,
"VROverlayError_InvalidTrackedDevice": 19,
"VROverlayError_InvalidParameter": 20,
"VROverlayError_ThumbnailCantBeDestroyed": 21,
"VROverlayError_ArrayTooSmall": 22,
"VROverlayError_RequestFailed": 23,
"VROverlayError_InvalidTexture": 24,
"VROverlayError_UnableToLoadFile": 25,
"VROverlayError_KeyboardAlreadyInUse": 26,
"VROverlayError_NoNeighbor": 27,
"VROverlayError_TooManyMaskPrimitives": 29,
"VROverlayError_BadMaskPrimitive": 30,
"VROverlayError_TextureAlreadyLocked": 31,
"VROverlayError_TextureLockCapacityReached": 32,
"VROverlayError_TextureNotLocked": 33
},
"EVRApplicationType": {
"VRApplication_Other": 0,
"VRApplication_Scene": 1,
"VRApplication_Overlay": 2,
"VRApplication_Background": 3,
"VRApplication_Utility": 4,
"VRApplication_VRMonitor": 5,
"VRApplication_SteamWatchdog": 6,
"VRApplication_Bootstrapper": 7,
"VRApplication_Max": 8
},
"EVRFirmwareError": {
"VRFirmwareError_None": 0,
"VRFirmwareError_Success": 1,
"VRFirmwareError_Fail": 2
},
"EVRNotificationError": {
"VRNotificationError_OK": 0,
"VRNotificationError_InvalidNotificationId": 100,
"VRNotificationError_NotificationQueueFull": 101,
"VRNotificationError_InvalidOverlayHandle": 102,
"VRNotificationError_SystemWithUserValueAlreadyExists": 103
},
"EVRSkeletalMotionRange": {
"VRSkeletalMotionRange_WithController": 0,
"VRSkeletalMotionRange_WithoutController": 1
},
"EVRInitError": {
"VRInitError_None": 0,
"VRInitError_Unknown": 1,
"VRInitError_Init_InstallationNotFound": 100,
"VRInitError_Init_InstallationCorrupt": 101,
"VRInitError_Init_VRClientDLLNotFound": 102,
"VRInitError_Init_FileNotFound": 103,
"VRInitError_Init_FactoryNotFound": 104,
"VRInitError_Init_InterfaceNotFound": 105,
"VRInitError_Init_InvalidInterface": 106,
"VRInitError_Init_UserConfigDirectoryInvalid": 107,
"VRInitError_Init_HmdNotFound": 108,
"VRInitError_Init_NotInitialized": 109,
"VRInitError_Init_PathRegistryNotFound": 110,
"VRInitError_Init_NoConfigPath": 111,
"VRInitError_Init_NoLogPath": 112,
"VRInitError_Init_PathRegistryNotWritable": 113,
"VRInitError_Init_AppInfoInitFailed": 114,
"VRInitError_Init_Retry": 115,
"VRInitError_Init_InitCanceledByUser": 116,
"VRInitError_Init_AnotherAppLaunching": 117,
"VRInitError_Init_SettingsInitFailed": 118,
"VRInitError_Init_ShuttingDown": 119,
"VRInitError_Init_TooManyObjects": 120,
"VRInitError_Init_NoServerForBackgroundApp": 121,
"VRInitError_Init_NotSupportedWithCompositor": 122,
"VRInitError_Init_NotAvailableToUtilityApps": 123,
"VRInitError_Init_Internal": 124,
"VRInitError_Init_HmdDriverIdIsNone": 125,
"VRInitError_Init_HmdNotFoundPresenceFailed": 126,
"VRInitError_Init_VRMonitorNotFound": 127,
"VRInitError_Init_VRMonitorStartupFailed": 128,
"VRInitError_Init_LowPowerWatchdogNotSupported": 129,
"VRInitError_Init_InvalidApplicationType": 130,
"VRInitError_Init_NotAvailableToWatchdogApps": 131,
"VRInitError_Init_WatchdogDisabledInSettings": 132,
"VRInitError_Init_VRDashboardNotFound": 133,
"VRInitError_Init_VRDashboardStartupFailed": 134,
"VRInitError_Init_VRHomeNotFound": 135,
"VRInitError_Init_VRHomeStartupFailed": 136,
"VRInitError_Init_RebootingBusy": 137,
"VRInitError_Init_FirmwareUpdateBusy": 138,
"VRInitError_Init_FirmwareRecoveryBusy": 139,
"VRInitError_Init_USBServiceBusy": 140,
"VRInitError_Init_VRWebHelperStartupFailed": 141,
"VRInitError_Init_TrackerManagerInitFailed": 142,
"VRInitError_Driver_Failed": 200,
"VRInitError_Driver_Unknown": 201,
"VRInitError_Driver_HmdUnknown": 202,
"VRInitError_Driver_NotLoaded": 203,
"VRInitError_Driver_RuntimeOutOfDate": 204,
"VRInitError_Driver_HmdInUse": 205,
"VRInitError_Driver_NotCalibrated": 206,
"VRInitError_Driver_CalibrationInvalid": 207,
"VRInitError_Driver_HmdDisplayNotFound": 208,
"VRInitError_Driver_TrackedDeviceInterfaceUnknown": 209,
"VRInitError_Driver_HmdDriverIdOutOfBounds": 211,
"VRInitError_Driver_HmdDisplayMirrored": 212,
"VRInitError_IPC_ServerInitFailed": 300,
"VRInitError_IPC_ConnectFailed": 301,
"VRInitError_IPC_SharedStateInitFailed": 302,
"VRInitError_IPC_CompositorInitFailed": 303,
"VRInitError_IPC_MutexInitFailed": 304,
"VRInitError_IPC_Failed": 305,
"VRInitError_IPC_CompositorConnectFailed": 306,
"VRInitError_IPC_CompositorInvalidConnectResponse": 307,
"VRInitError_IPC_ConnectFailedAfterMultipleAttempts": 308,
"VRInitError_Compositor_Failed": 400,
"VRInitError_Compositor_D3D11HardwareRequired": 401,
"VRInitError_Compositor_FirmwareRequiresUpdate": 402,
"VRInitError_Compositor_OverlayInitFailed": 403,
"VRInitError_Compositor_ScreenshotsInitFailed": 404,
"VRInitError_Compositor_UnableToCreateDevice": 405,
"VRInitError_VendorSpecific_UnableToConnectToOculusRuntime": 1000,
"VRInitError_VendorSpecific_WindowsNotInDevMode": 1001,
"VRInitError_VendorSpecific_HmdFound_CantOpenDevice": 1101,
"VRInitError_VendorSpecific_HmdFound_UnableToRequestConfigStart": 1102,
"VRInitError_VendorSpecific_HmdFound_NoStoredConfig": 1103,
"VRInitError_VendorSpecific_HmdFound_ConfigTooBig": 1104,
"VRInitError_VendorSpecific_HmdFound_ConfigTooSmall": 1105,
"VRInitError_VendorSpecific_HmdFound_UnableToInitZLib": 1106,
"VRInitError_VendorSpecific_HmdFound_CantReadFirmwareVersion": 1107,
"VRInitError_VendorSpecific_HmdFound_UnableToSendUserDataStart": 1108,
"VRInitError_VendorSpecific_HmdFound_UnableToGetUserDataStart": 1109,
"VRInitError_VendorSpecific_HmdFound_UnableToGetUserDataNext": 1110,
"VRInitError_VendorSpecific_HmdFound_UserDataAddressRange": 1111,
"VRInitError_VendorSpecific_HmdFound_UserDataError": 1112,
"VRInitError_VendorSpecific_HmdFound_ConfigFailedSanityCheck": 1113,
"VRInitError_Steam_SteamInstallationNotFound": 2000
},
"EVRScreenshotType": {
"VRScreenshotType_None": 0,
"VRScreenshotType_Mono": 1,
"VRScreenshotType_Stereo": 2,
"VRScreenshotType_Cubemap": 3,
"VRScreenshotType_MonoPanorama": 4,
"VRScreenshotType_StereoPanorama": 5
},
"EVRScreenshotPropertyFilenames": {
"VRScreenshotPropertyFilenames_Preview": 0,
"VRScreenshotPropertyFilenames_VR": 1
},
"EVRTrackedCameraError": {
"VRTrackedCameraError_None": 0,
"VRTrackedCameraError_OperationFailed": 100,
"VRTrackedCameraError_InvalidHandle": 101,
"VRTrackedCameraError_InvalidFrameHeaderVersion": 102,
"VRTrackedCameraError_OutOfHandles": 103,
"VRTrackedCameraError_IPCFailure": 104,
"VRTrackedCameraError_NotSupportedForThisDevice": 105,
"VRTrackedCameraError_SharedMemoryFailure": 106,
"VRTrackedCameraError_FrameBufferingFailure": 107,
"VRTrackedCameraError_StreamSetupFailure": 108,
"VRTrackedCameraError_InvalidGLTextureId": 109,
"VRTrackedCameraError_InvalidSharedTextureHandle": 110,
"VRTrackedCameraError_FailedToGetGLTextureId": 111,
"VRTrackedCameraError_SharedTextureFailure": 112,
"VRTrackedCameraError_NoFrameAvailable": 113,
"VRTrackedCameraError_InvalidArgument": 114,
"VRTrackedCameraError_InvalidFrameBufferSize": 115
},
"EVRTrackedCameraFrameLayout": {
"EVRTrackedCameraFrameLayout_Mono": 1,
"EVRTrackedCameraFrameLayout_Stereo": 2,
"EVRTrackedCameraFrameLayout_VerticalLayout": 16,
"EVRTrackedCameraFrameLayout_HorizontalLayout": 32
},
"EVRTrackedCameraFrameType": {
"VRTrackedCameraFrameType_Distorted": 0,
"VRTrackedCameraFrameType_Undistorted": 1,
"VRTrackedCameraFrameType_MaximumUndistorted": 2,
"MAX_CAMERA_FRAME_TYPES": 3
},
"EVSync": {
"VSync_None": 0,
"VSync_WaitRender": 1,
"VSync_NoWaitRender": 2
},
"EVRMuraCorrectionMode": {
"EVRMuraCorrectionMode_Default": 0,
"EVRMuraCorrectionMode_NoCorrection": 1
},
"Imu_OffScaleFlags": {
"OffScale_AccelX": 1,
"OffScale_AccelY": 2,
"OffScale_AccelZ": 4,
"OffScale_GyroX": 8,
"OffScale_GyroY": 16,
"OffScale_GyroZ": 32
},
"EVRApplicationError": {
"VRApplicationError_None": 0,
"VRApplicationError_AppKeyAlreadyExists": 100,
"VRApplicationError_NoManifest": 101,
"VRApplicationError_NoApplication": 102,
"VRApplicationError_InvalidIndex": 103,
"VRApplicationError_UnknownApplication": 104,
"VRApplicationError_IPCFailed": 105,
"VRApplicationError_ApplicationAlreadyRunning": 106,
"VRApplicationError_InvalidManifest": 107,
"VRApplicationError_InvalidApplication": 108,
"VRApplicationError_LaunchFailed": 109,
"VRApplicationError_ApplicationAlreadyStarting": 110,
"VRApplicationError_LaunchInProgress": 111,
"VRApplicationError_OldApplicationQuitting": 112,
"VRApplicationError_TransitionAborted": 113,
"VRApplicationError_IsTemplate": 114,
"VRApplicationError_SteamVRIsExiting": 115,
"VRApplicationError_BufferTooSmall": 200,
"VRApplicationError_PropertyNotSet": 201,
"VRApplicationError_UnknownProperty": 202,
"VRApplicationError_InvalidParameter": 203
},
"EVRApplicationProperty": {
"VRApplicationProperty_Name_String": 0,
"VRApplicationProperty_LaunchType_String": 11,
"VRApplicationProperty_WorkingDirectory_String": 12,
"VRApplicationProperty_BinaryPath_String": 13,
"VRApplicationProperty_Arguments_String": 14,
"VRApplicationProperty_URL_String": 15,
"VRApplicationProperty_Description_String": 50,
"VRApplicationProperty_NewsURL_String": 51,
"VRApplicationProperty_ImagePath_String": 52,
"VRApplicationProperty_Source_String": 53,
"VRApplicationProperty_ActionManifestURL_String": 54,
"VRApplicationProperty_IsDashboardOverlay_Bool": 60,
"VRApplicationProperty_IsTemplate_Bool": 61,
"VRApplicationProperty_IsInstanced_Bool": 62,
"VRApplicationProperty_IsInternal_Bool": 63,
"VRApplicationProperty_WantsCompositorPauseInStandby_Bool": 64,
"VRApplicationProperty_LastLaunchTime_Uint64": 70
},
"EVRApplicationTransitionState": {
"VRApplicationTransition_None": 0,
"VRApplicationTransition_OldAppQuitSent": 10,
"VRApplicationTransition_WaitingForExternalLaunch": 11,
"VRApplicationTransition_NewAppLaunched": 20
},
"ChaperoneCalibrationState": {
"ChaperoneCalibrationState_OK": 1,
"ChaperoneCalibrationState_Warning": 100,
"ChaperoneCalibrationState_Warning_BaseStationMayHaveMoved": 101,
"ChaperoneCalibrationState_Warning_BaseStationRemoved": 102,
"ChaperoneCalibrationState_Warning_SeatedBoundsInvalid": 103,
"ChaperoneCalibrationState_Error": 200,
"ChaperoneCalibrationState_Error_BaseStationUninitialized": 201,
"ChaperoneCalibrationState_Error_BaseStationConflict": 202,
"ChaperoneCalibrationState_Error_PlayAreaInvalid": 203,
"ChaperoneCalibrationState_Error_CollisionBoundsInvalid": 204
},
"EChaperoneConfigFile": {
"EChaperoneConfigFile_Live": 1,
"EChaperoneConfigFile_Temp": 2
},
"EChaperoneImportFlags": {
"EChaperoneImport_BoundsOnly": 1
},
"EVRCompositorError": {
"VRCompositorError_None": 0,
"VRCompositorError_RequestFailed": 1,
"VRCompositorError_IncompatibleVersion": 100,
"VRCompositorError_DoNotHaveFocus": 101,
"VRCompositorError_InvalidTexture": 102,
"VRCompositorError_IsNotSceneApplication": 103,
"VRCompositorError_TextureIsOnWrongDevice": 104,
"VRCompositorError_TextureUsesUnsupportedFormat": 105,
"VRCompositorError_SharedTexturesNotSupported": 106,
"VRCompositorError_IndexOutOfRange": 107,
"VRCompositorError_AlreadySubmitted": 108,
"VRCompositorError_InvalidBounds": 109
},
"EVRCompositorTimingMode": {
"VRCompositorTimingMode_Implicit": 0,
"VRCompositorTimingMode_Explicit_RuntimePerformsPostPresentHandoff": 1,
"VRCompositorTimingMode_Explicit_ApplicationPerformsPostPresentHandoff": 2
},
"VROverlayInputMethod": {
"VROverlayInputMethod_None": 0,
"VROverlayInputMethod_Mouse": 1,
"VROverlayInputMethod_DualAnalog": 2
},
"VROverlayTransformType": {
"VROverlayTransform_Absolute": 0,
"VROverlayTransform_TrackedDeviceRelative": 1,
"VROverlayTransform_SystemOverlay": 2,
"VROverlayTransform_TrackedComponent": 3
},
"VROverlayFlags": {
"VROverlayFlags_None": 0,
"VROverlayFlags_Curved": 1,
"VROverlayFlags_RGSS4X": 2,
"VROverlayFlags_NoDashboardTab": 3,
"VROverlayFlags_AcceptsGamepadEvents": 4,
"VROverlayFlags_ShowGamepadFocus": 5,
"VROverlayFlags_SendVRScrollEvents": 6,
"VROverlayFlags_SendVRTouchpadEvents": 7,
"VROverlayFlags_ShowTouchPadScrollWheel": 8,
"VROverlayFlags_TransferOwnershipToInternalProcess": 9,
"VROverlayFlags_SideBySide_Parallel": 10,
"VROverlayFlags_SideBySide_Crossed": 11,
"VROverlayFlags_Panorama": 12,
"VROverlayFlags_StereoPanorama": 13,
"VROverlayFlags_SortWithNonSceneOverlays": 14,
"VROverlayFlags_VisibleInDashboard": 15
},
"VRMessageOverlayResponse": {
"VRMessageOverlayResponse_ButtonPress_0": 0,
"VRMessageOverlayResponse_ButtonPress_1": 1,
"VRMessageOverlayResponse_ButtonPress_2": 2,
"VRMessageOverlayResponse_ButtonPress_3": 3,
"VRMessageOverlayResponse_CouldntFindSystemOverlay": 4,
"VRMessageOverlayResponse_CouldntFindOrCreateClientOverlay": 5,
"VRMessageOverlayResponse_ApplicationQuit": 6
},
"EGamepadTextInputMode": {
"k_EGamepadTextInputModeNormal": 0,
"k_EGamepadTextInputModePassword": 1,
"k_EGamepadTextInputModeSubmit": 2
},
"EGamepadTextInputLineMode": {
"k_EGamepadTextInputLineModeSingleLine": 0,
"k_EGamepadTextInputLineModeMultipleLines": 1
},
"EOverlayDirection": {
"OverlayDirection_Up": 0,
"OverlayDirection_Down": 1,
"OverlayDirection_Left": 2,
"OverlayDirection_Right": 3,
"OverlayDirection_Count": 4
},
"EVROverlayIntersectionMaskPrimitiveType": {
"OverlayIntersectionPrimitiveType_Rectangle": 0,
"OverlayIntersectionPrimitiveType_Circle": 1
},
"EVRRenderModelError": {
"VRRenderModelError_None": 0,
"VRRenderModelError_Loading": 100,
"VRRenderModelError_NotSupported": 200,
"VRRenderModelError_InvalidArg": 300,
"VRRenderModelError_InvalidModel": 301,
"VRRenderModelError_NoShapes": 302,
"VRRenderModelError_MultipleShapes": 303,
"VRRenderModelError_TooManyVertices": 304,
"VRRenderModelError_MultipleTextures": 305,
"VRRenderModelError_BufferTooSmall": 306,
"VRRenderModelError_NotEnoughNormals": 307,
"VRRenderModelError_NotEnoughTexCoords": 308,
"VRRenderModelError_InvalidTexture": 400
},
"EVRComponentProperty": {
"VRComponentProperty_IsStatic": 1,
"VRComponentProperty_IsVisible": 2,
"VRComponentProperty_IsTouched": 4,
"VRComponentProperty_IsPressed": 8,
"VRComponentProperty_IsScrolled": 16
},
"EVRNotificationType": {
"EVRNotificationType_Transient": 0,
"EVRNotificationType_Persistent": 1,
"EVRNotificationType_Transient_SystemWithUserValue": 2
},
"EVRNotificationStyle": {
"EVRNotificationStyle_None": 0,
"EVRNotificationStyle_Application": 100,
"EVRNotificationStyle_Contact_Disabled": 200,
"EVRNotificationStyle_Contact_Enabled": 201,
"EVRNotificationStyle_Contact_Active": 202
},
"EVRSettingsError": {
"VRSettingsError_None": 0,
"VRSettingsError_IPCFailed": 1,
"VRSettingsError_WriteFailed": 2,
"VRSettingsError_ReadFailed": 3,
"VRSettingsError_JsonParseFailed": 4,
"VRSettingsError_UnsetSettingHasNoDefault": 5
},
"EVRScreenshotError": {
"VRScreenshotError_None": 0,
"VRScreenshotError_RequestFailed": 1,
"VRScreenshotError_IncompatibleVersion": 100,
"VRScreenshotError_NotFound": 101,
"VRScreenshotError_BufferTooSmall": 102,
"VRScreenshotError_ScreenshotAlreadyInProgress": 108
},
"EVRSkeletalTransformSpace": {
"VRSkeletalTransformSpace_Model": 0,
"VRSkeletalTransformSpace_Parent": 1,
"VRSkeletalTransformSpace_Additive": 2
},
"EVRInputFilterCancelType": {
"VRInputFilterCancel_Timers": 0,
"VRInputFilterCancel_Momentum": 1
},
"EIOBufferError": {
"IOBuffer_Success": 0,
"IOBuffer_OperationFailed": 100,
"IOBuffer_InvalidHandle": 101,
"IOBuffer_InvalidArgument": 102,
"IOBuffer_PathExists": 103,
"IOBuffer_PathDoesNotExist": 104,
"IOBuffer_Permission": 105
},
"EIOBufferMode": {
"IOBufferMode_Read": 1,
"IOBufferMode_Write": 2,
"IOBufferMode_Create": 512
},
"k_nDriverNone": 4294967295,
"k_unMaxDriverDebugResponseSize": 32768,
"k_unTrackedDeviceIndex_Hmd": 0,
"k_unMaxTrackedDeviceCount": 64,
"k_unTrackedDeviceIndexOther": 4294967294,
"k_unTrackedDeviceIndexInvalid": 4294967295,
"k_ulInvalidPropertyContainer": 0,
"k_unInvalidPropertyTag": 0,
"k_ulInvalidDriverHandle": 0,
"k_unFloatPropertyTag": 1,
"k_unInt32PropertyTag": 2,
"k_unUint64PropertyTag": 3,
"k_unBoolPropertyTag": 4,
"k_unStringPropertyTag": 5,
"k_unHmdMatrix34PropertyTag": 20,
"k_unHmdMatrix44PropertyTag": 21,
"k_unHmdVector3PropertyTag": 22,
"k_unHmdVector4PropertyTag": 23,
"k_unHiddenAreaPropertyTag": 30,
"k_unPathHandleInfoTag": 31,
"k_unActionPropertyTag": 32,
"k_unInputValuePropertyTag": 33,
"k_unWildcardPropertyTag": 34,
"k_unHapticVibrationPropertyTag": 35,
"k_unSkeletonPropertyTag": 36,
"k_unSpatialAnchorPosePropertyTag": 40,
"k_unOpenVRInternalReserved_Start": 1000,
"k_unOpenVRInternalReserved_End": 10000,
"k_unMaxPropertyStringSize": 32768,
"k_ulInvalidActionHandle": 0,
"k_ulInvalidActionSetHandle": 0,
"k_ulInvalidInputValueHandle": 0,
"k_unControllerStateAxisCount": 5,
"k_ulOverlayHandleInvalid": 0,
"k_unScreenshotHandleInvalid": 0,
"IVRSystem_Version": "IVRSystem_019",
"IVRExtendedDisplay_Version": "IVRExtendedDisplay_001",
"IVRTrackedCamera_Version": "IVRTrackedCamera_003",
"k_unMaxApplicationKeyLength": 128,
"k_pch_MimeType_HomeApp": "vr/home",
"k_pch_MimeType_GameTheater": "vr/game_theater",
"IVRApplications_Version": "IVRApplications_006",
"IVRChaperone_Version": "IVRChaperone_003",
"IVRChaperoneSetup_Version": "IVRChaperoneSetup_005",
"IVRCompositor_Version": "IVRCompositor_022",
"k_unVROverlayMaxKeyLength": 128,
"k_unVROverlayMaxNameLength": 128,
"k_unMaxOverlayCount": 64,
"k_unMaxOverlayIntersectionMaskPrimitivesCount": 32,
"IVROverlay_Version": "IVROverlay_018",
"k_pch_Controller_Component_GDC2015": "gdc2015",
"k_pch_Controller_Component_Base": "base",
"k_pch_Controller_Component_Tip": "tip",
"k_pch_Controller_Component_HandGrip": "handgrip",
"k_pch_Controller_Component_Status": "status",
"IVRRenderModels_Version": "IVRRenderModels_006",
"k_unNotificationTextMaxSize": 256,
"IVRNotifications_Version": "IVRNotifications_002",
"k_unMaxSettingsKeyLength": 128,
"IVRSettings_Version": "IVRSettings_002",
"k_pch_SteamVR_Section": "steamvr",
"k_pch_SteamVR_RequireHmd_String": "requireHmd",
"k_pch_SteamVR_ForcedDriverKey_String": "forcedDriver",
"k_pch_SteamVR_ForcedHmdKey_String": "forcedHmd",
"k_pch_SteamVR_DisplayDebug_Bool": "displayDebug",
"k_pch_SteamVR_DebugProcessPipe_String": "debugProcessPipe",
"k_pch_SteamVR_DisplayDebugX_Int32": "displayDebugX",
"k_pch_SteamVR_DisplayDebugY_Int32": "displayDebugY",
"k_pch_SteamVR_SendSystemButtonToAllApps_Bool": "sendSystemButtonToAllApps",
"k_pch_SteamVR_LogLevel_Int32": "loglevel",
"k_pch_SteamVR_IPD_Float": "ipd",
"k_pch_SteamVR_Background_String": "background",
"k_pch_SteamVR_BackgroundUseDomeProjection_Bool": "backgroundUseDomeProjection",
"k_pch_SteamVR_BackgroundCameraHeight_Float": "backgroundCameraHeight",
"k_pch_SteamVR_BackgroundDomeRadius_Float": "backgroundDomeRadius",
"k_pch_SteamVR_GridColor_String": "gridColor",
"k_pch_SteamVR_PlayAreaColor_String": "playAreaColor",
"k_pch_SteamVR_ShowStage_Bool": "showStage",
"k_pch_SteamVR_ActivateMultipleDrivers_Bool": "activateMultipleDrivers",
"k_pch_SteamVR_DirectMode_Bool": "directMode",
"k_pch_SteamVR_DirectModeEdidVid_Int32": "directModeEdidVid",
"k_pch_SteamVR_DirectModeEdidPid_Int32": "directModeEdidPid",
"k_pch_SteamVR_UsingSpeakers_Bool": "usingSpeakers",
"k_pch_SteamVR_SpeakersForwardYawOffsetDegrees_Float": "speakersForwardYawOffsetDegrees",
"k_pch_SteamVR_BaseStationPowerManagement_Bool": "basestationPowerManagement",
"k_pch_SteamVR_NeverKillProcesses_Bool": "neverKillProcesses",
"k_pch_SteamVR_SupersampleScale_Float": "supersampleScale",
"k_pch_SteamVR_AllowAsyncReprojection_Bool": "allowAsyncReprojection",
"k_pch_SteamVR_AllowReprojection_Bool": "allowInterleavedReprojection",