| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240 |
- {"typedefs":[{"typedef": "vr::glSharedTextureHandle_t","type": "void *"}
- ,{"typedef": "vr::glInt_t","type": "int32_t"}
- ,{"typedef": "vr::glUInt_t","type": "uint32_t"}
- ,{"typedef": "vr::TrackedDeviceIndex_t","type": "uint32_t"}
- ,{"typedef": "vr::VREvent_Data_t","type": "union VREvent_Data_t"}
- ,{"typedef": "vr::VRControllerState_t","type": "struct vr::VRControllerState001_t"}
- ,{"typedef": "vr::VROverlayHandle_t","type": "uint64_t"}
- ,{"typedef": "vr::TrackedCameraHandle_t","type": "void *"}
- ,{"typedef": "vr::VRComponentProperties","type": "uint32_t"}
- ,{"typedef": "vr::TextureID_t","type": "int32_t"}
- ,{"typedef": "vr::VRNotificationId","type": "uint32_t"}
- ,{"typedef": "vr::HmdError","type": "enum vr::EVRInitError"}
- ,{"typedef": "vr::Hmd_Eye","type": "enum vr::EVREye"}
- ,{"typedef": "vr::GraphicsAPIConvention","type": "enum vr::EGraphicsAPIConvention"}
- ,{"typedef": "vr::ColorSpace","type": "enum vr::EColorSpace"}
- ,{"typedef": "vr::HmdTrackingResult","type": "enum vr::ETrackingResult"}
- ,{"typedef": "vr::TrackedDeviceClass","type": "enum vr::ETrackedDeviceClass"}
- ,{"typedef": "vr::TrackingUniverseOrigin","type": "enum vr::ETrackingUniverseOrigin"}
- ,{"typedef": "vr::TrackedDeviceProperty","type": "enum vr::ETrackedDeviceProperty"}
- ,{"typedef": "vr::TrackedPropertyError","type": "enum vr::ETrackedPropertyError"}
- ,{"typedef": "vr::VRSubmitFlags_t","type": "enum vr::EVRSubmitFlags"}
- ,{"typedef": "vr::VRState_t","type": "enum vr::EVRState"}
- ,{"typedef": "vr::CollisionBoundsStyle_t","type": "enum vr::ECollisionBoundsStyle"}
- ,{"typedef": "vr::VROverlayError","type": "enum vr::EVROverlayError"}
- ,{"typedef": "vr::VRFirmwareError","type": "enum vr::EVRFirmwareError"}
- ,{"typedef": "vr::VRCompositorError","type": "enum vr::EVRCompositorError"}
- ],
- "enums":[
- {"enumname": "vr::EVREye","values": [
- {"name": "Eye_Left","value": "0"}
- ,{"name": "Eye_Right","value": "1"}
- ]}
- , {"enumname": "vr::EGraphicsAPIConvention","values": [
- {"name": "API_DirectX","value": "0"}
- ,{"name": "API_OpenGL","value": "1"}
- ]}
- , {"enumname": "vr::EColorSpace","values": [
- {"name": "ColorSpace_Auto","value": "0"}
- ,{"name": "ColorSpace_Gamma","value": "1"}
- ,{"name": "ColorSpace_Linear","value": "2"}
- ]}
- , {"enumname": "vr::ETrackingResult","values": [
- {"name": "TrackingResult_Uninitialized","value": "1"}
- ,{"name": "TrackingResult_Calibrating_InProgress","value": "100"}
- ,{"name": "TrackingResult_Calibrating_OutOfRange","value": "101"}
- ,{"name": "TrackingResult_Running_OK","value": "200"}
- ,{"name": "TrackingResult_Running_OutOfRange","value": "201"}
- ]}
- , {"enumname": "vr::ETrackedDeviceClass","values": [
- {"name": "TrackedDeviceClass_Invalid","value": "0"}
- ,{"name": "TrackedDeviceClass_HMD","value": "1"}
- ,{"name": "TrackedDeviceClass_Controller","value": "2"}
- ,{"name": "TrackedDeviceClass_TrackingReference","value": "4"}
- ,{"name": "TrackedDeviceClass_Other","value": "1000"}
- ]}
- , {"enumname": "vr::ETrackedControllerRole","values": [
- {"name": "TrackedControllerRole_Invalid","value": "0"}
- ,{"name": "TrackedControllerRole_LeftHand","value": "1"}
- ,{"name": "TrackedControllerRole_RightHand","value": "2"}
- ]}
- , {"enumname": "vr::ETrackingUniverseOrigin","values": [
- {"name": "TrackingUniverseSeated","value": "0"}
- ,{"name": "TrackingUniverseStanding","value": "1"}
- ,{"name": "TrackingUniverseRawAndUncalibrated","value": "2"}
- ]}
- , {"enumname": "vr::ETrackedDeviceProperty","values": [
- {"name": "Prop_TrackingSystemName_String","value": "1000"}
- ,{"name": "Prop_ModelNumber_String","value": "1001"}
- ,{"name": "Prop_SerialNumber_String","value": "1002"}
- ,{"name": "Prop_RenderModelName_String","value": "1003"}
- ,{"name": "Prop_WillDriftInYaw_Bool","value": "1004"}
- ,{"name": "Prop_ManufacturerName_String","value": "1005"}
- ,{"name": "Prop_TrackingFirmwareVersion_String","value": "1006"}
- ,{"name": "Prop_HardwareRevision_String","value": "1007"}
- ,{"name": "Prop_AllWirelessDongleDescriptions_String","value": "1008"}
- ,{"name": "Prop_ConnectedWirelessDongle_String","value": "1009"}
- ,{"name": "Prop_DeviceIsWireless_Bool","value": "1010"}
- ,{"name": "Prop_DeviceIsCharging_Bool","value": "1011"}
- ,{"name": "Prop_DeviceBatteryPercentage_Float","value": "1012"}
- ,{"name": "Prop_StatusDisplayTransform_Matrix34","value": "1013"}
- ,{"name": "Prop_Firmware_UpdateAvailable_Bool","value": "1014"}
- ,{"name": "Prop_Firmware_ManualUpdate_Bool","value": "1015"}
- ,{"name": "Prop_Firmware_ManualUpdateURL_String","value": "1016"}
- ,{"name": "Prop_HardwareRevision_Uint64","value": "1017"}
- ,{"name": "Prop_FirmwareVersion_Uint64","value": "1018"}
- ,{"name": "Prop_FPGAVersion_Uint64","value": "1019"}
- ,{"name": "Prop_VRCVersion_Uint64","value": "1020"}
- ,{"name": "Prop_RadioVersion_Uint64","value": "1021"}
- ,{"name": "Prop_DongleVersion_Uint64","value": "1022"}
- ,{"name": "Prop_BlockServerShutdown_Bool","value": "1023"}
- ,{"name": "Prop_CanUnifyCoordinateSystemWithHmd_Bool","value": "1024"}
- ,{"name": "Prop_ContainsProximitySensor_Bool","value": "1025"}
- ,{"name": "Prop_DeviceProvidesBatteryStatus_Bool","value": "1026"}
- ,{"name": "Prop_DeviceCanPowerOff_Bool","value": "1027"}
- ,{"name": "Prop_Firmware_ProgrammingTarget_String","value": "1028"}
- ,{"name": "Prop_DeviceClass_Int32","value": "1029"}
- ,{"name": "Prop_HasCamera_Bool","value": "1030"}
- ,{"name": "Prop_DriverVersion_String","value": "1031"}
- ,{"name": "Prop_Firmware_ForceUpdateRequired_Bool","value": "1032"}
- ,{"name": "Prop_ReportsTimeSinceVSync_Bool","value": "2000"}
- ,{"name": "Prop_SecondsFromVsyncToPhotons_Float","value": "2001"}
- ,{"name": "Prop_DisplayFrequency_Float","value": "2002"}
- ,{"name": "Prop_UserIpdMeters_Float","value": "2003"}
- ,{"name": "Prop_CurrentUniverseId_Uint64","value": "2004"}
- ,{"name": "Prop_PreviousUniverseId_Uint64","value": "2005"}
- ,{"name": "Prop_DisplayFirmwareVersion_Uint64","value": "2006"}
- ,{"name": "Prop_IsOnDesktop_Bool","value": "2007"}
- ,{"name": "Prop_DisplayMCType_Int32","value": "2008"}
- ,{"name": "Prop_DisplayMCOffset_Float","value": "2009"}
- ,{"name": "Prop_DisplayMCScale_Float","value": "2010"}
- ,{"name": "Prop_EdidVendorID_Int32","value": "2011"}
- ,{"name": "Prop_DisplayMCImageLeft_String","value": "2012"}
- ,{"name": "Prop_DisplayMCImageRight_String","value": "2013"}
- ,{"name": "Prop_DisplayGCBlackClamp_Float","value": "2014"}
- ,{"name": "Prop_EdidProductID_Int32","value": "2015"}
- ,{"name": "Prop_CameraToHeadTransform_Matrix34","value": "2016"}
- ,{"name": "Prop_DisplayGCType_Int32","value": "2017"}
- ,{"name": "Prop_DisplayGCOffset_Float","value": "2018"}
- ,{"name": "Prop_DisplayGCScale_Float","value": "2019"}
- ,{"name": "Prop_DisplayGCPrescale_Float","value": "2020"}
- ,{"name": "Prop_DisplayGCImage_String","value": "2021"}
- ,{"name": "Prop_LensCenterLeftU_Float","value": "2022"}
- ,{"name": "Prop_LensCenterLeftV_Float","value": "2023"}
- ,{"name": "Prop_LensCenterRightU_Float","value": "2024"}
- ,{"name": "Prop_LensCenterRightV_Float","value": "2025"}
- ,{"name": "Prop_UserHeadToEyeDepthMeters_Float","value": "2026"}
- ,{"name": "Prop_CameraFirmwareVersion_Uint64","value": "2027"}
- ,{"name": "Prop_CameraFirmwareDescription_String","value": "2028"}
- ,{"name": "Prop_DisplayFPGAVersion_Uint64","value": "2029"}
- ,{"name": "Prop_DisplayBootloaderVersion_Uint64","value": "2030"}
- ,{"name": "Prop_DisplayHardwareVersion_Uint64","value": "2031"}
- ,{"name": "Prop_AudioFirmwareVersion_Uint64","value": "2032"}
- ,{"name": "Prop_CameraCompatibilityMode_Int32","value": "2033"}
- ,{"name": "Prop_ScreenshotHorizontalFieldOfViewDegrees_Float","value": "2034"}
- ,{"name": "Prop_ScreenshotVerticalFieldOfViewDegrees_Float","value": "2035"}
- ,{"name": "Prop_AttachedDeviceId_String","value": "3000"}
- ,{"name": "Prop_SupportedButtons_Uint64","value": "3001"}
- ,{"name": "Prop_Axis0Type_Int32","value": "3002"}
- ,{"name": "Prop_Axis1Type_Int32","value": "3003"}
- ,{"name": "Prop_Axis2Type_Int32","value": "3004"}
- ,{"name": "Prop_Axis3Type_Int32","value": "3005"}
- ,{"name": "Prop_Axis4Type_Int32","value": "3006"}
- ,{"name": "Prop_FieldOfViewLeftDegrees_Float","value": "4000"}
- ,{"name": "Prop_FieldOfViewRightDegrees_Float","value": "4001"}
- ,{"name": "Prop_FieldOfViewTopDegrees_Float","value": "4002"}
- ,{"name": "Prop_FieldOfViewBottomDegrees_Float","value": "4003"}
- ,{"name": "Prop_TrackingRangeMinimumMeters_Float","value": "4004"}
- ,{"name": "Prop_TrackingRangeMaximumMeters_Float","value": "4005"}
- ,{"name": "Prop_ModeLabel_String","value": "4006"}
- ,{"name": "Prop_VendorSpecific_Reserved_Start","value": "10000"}
- ,{"name": "Prop_VendorSpecific_Reserved_End","value": "10999"}
- ]}
- , {"enumname": "vr::ETrackedPropertyError","values": [
- {"name": "TrackedProp_Success","value": "0"}
- ,{"name": "TrackedProp_WrongDataType","value": "1"}
- ,{"name": "TrackedProp_WrongDeviceClass","value": "2"}
- ,{"name": "TrackedProp_BufferTooSmall","value": "3"}
- ,{"name": "TrackedProp_UnknownProperty","value": "4"}
- ,{"name": "TrackedProp_InvalidDevice","value": "5"}
- ,{"name": "TrackedProp_CouldNotContactServer","value": "6"}
- ,{"name": "TrackedProp_ValueNotProvidedByDevice","value": "7"}
- ,{"name": "TrackedProp_StringExceedsMaximumLength","value": "8"}
- ,{"name": "TrackedProp_NotYetAvailable","value": "9"}
- ]}
- , {"enumname": "vr::EVRSubmitFlags","values": [
- {"name": "Submit_Default","value": "0"}
- ,{"name": "Submit_LensDistortionAlreadyApplied","value": "1"}
- ,{"name": "Submit_GlRenderBuffer","value": "2"}
- ,{"name": "Submit_Screenshot","value": "4"}
- ]}
- , {"enumname": "vr::EVRState","values": [
- {"name": "VRState_Undefined","value": "-1"}
- ,{"name": "VRState_Off","value": "0"}
- ,{"name": "VRState_Searching","value": "1"}
- ,{"name": "VRState_Searching_Alert","value": "2"}
- ,{"name": "VRState_Ready","value": "3"}
- ,{"name": "VRState_Ready_Alert","value": "4"}
- ,{"name": "VRState_NotReady","value": "5"}
- ,{"name": "VRState_Standby","value": "6"}
- ]}
- , {"enumname": "vr::EVREventType","values": [
- {"name": "VREvent_None","value": "0"}
- ,{"name": "VREvent_TrackedDeviceActivated","value": "100"}
- ,{"name": "VREvent_TrackedDeviceDeactivated","value": "101"}
- ,{"name": "VREvent_TrackedDeviceUpdated","value": "102"}
- ,{"name": "VREvent_TrackedDeviceUserInteractionStarted","value": "103"}
- ,{"name": "VREvent_TrackedDeviceUserInteractionEnded","value": "104"}
- ,{"name": "VREvent_IpdChanged","value": "105"}
- ,{"name": "VREvent_EnterStandbyMode","value": "106"}
- ,{"name": "VREvent_LeaveStandbyMode","value": "107"}
- ,{"name": "VREvent_TrackedDeviceRoleChanged","value": "108"}
- ,{"name": "VREvent_ButtonPress","value": "200"}
- ,{"name": "VREvent_ButtonUnpress","value": "201"}
- ,{"name": "VREvent_ButtonTouch","value": "202"}
- ,{"name": "VREvent_ButtonUntouch","value": "203"}
- ,{"name": "VREvent_MouseMove","value": "300"}
- ,{"name": "VREvent_MouseButtonDown","value": "301"}
- ,{"name": "VREvent_MouseButtonUp","value": "302"}
- ,{"name": "VREvent_FocusEnter","value": "303"}
- ,{"name": "VREvent_FocusLeave","value": "304"}
- ,{"name": "VREvent_Scroll","value": "305"}
- ,{"name": "VREvent_TouchPadMove","value": "306"}
- ,{"name": "VREvent_InputFocusCaptured","value": "400"}
- ,{"name": "VREvent_InputFocusReleased","value": "401"}
- ,{"name": "VREvent_SceneFocusLost","value": "402"}
- ,{"name": "VREvent_SceneFocusGained","value": "403"}
- ,{"name": "VREvent_SceneApplicationChanged","value": "404"}
- ,{"name": "VREvent_SceneFocusChanged","value": "405"}
- ,{"name": "VREvent_InputFocusChanged","value": "406"}
- ,{"name": "VREvent_HideRenderModels","value": "410"}
- ,{"name": "VREvent_ShowRenderModels","value": "411"}
- ,{"name": "VREvent_OverlayShown","value": "500"}
- ,{"name": "VREvent_OverlayHidden","value": "501"}
- ,{"name": "VREvent_DashboardActivated","value": "502"}
- ,{"name": "VREvent_DashboardDeactivated","value": "503"}
- ,{"name": "VREvent_DashboardThumbSelected","value": "504"}
- ,{"name": "VREvent_DashboardRequested","value": "505"}
- ,{"name": "VREvent_ResetDashboard","value": "506"}
- ,{"name": "VREvent_RenderToast","value": "507"}
- ,{"name": "VREvent_ImageLoaded","value": "508"}
- ,{"name": "VREvent_ShowKeyboard","value": "509"}
- ,{"name": "VREvent_HideKeyboard","value": "510"}
- ,{"name": "VREvent_OverlayGamepadFocusGained","value": "511"}
- ,{"name": "VREvent_OverlayGamepadFocusLost","value": "512"}
- ,{"name": "VREvent_OverlaySharedTextureChanged","value": "513"}
- ,{"name": "VREvent_DashboardGuideButtonDown","value": "514"}
- ,{"name": "VREvent_DashboardGuideButtonUp","value": "515"}
- ,{"name": "VREvent_ScreenshotTriggered","value": "516"}
- ,{"name": "VREvent_RequestScreenshot","value": "520"}
- ,{"name": "VREvent_ScreenshotTaken","value": "521"}
- ,{"name": "VREvent_ScreenshotFailed","value": "522"}
- ,{"name": "VREvent_Notification_Shown","value": "600"}
- ,{"name": "VREvent_Notification_Hidden","value": "601"}
- ,{"name": "VREvent_Notification_BeginInteraction","value": "602"}
- ,{"name": "VREvent_Notification_Destroyed","value": "603"}
- ,{"name": "VREvent_Quit","value": "700"}
- ,{"name": "VREvent_ProcessQuit","value": "701"}
- ,{"name": "VREvent_QuitAborted_UserPrompt","value": "702"}
- ,{"name": "VREvent_QuitAcknowledged","value": "703"}
- ,{"name": "VREvent_DriverRequestedQuit","value": "704"}
- ,{"name": "VREvent_ChaperoneDataHasChanged","value": "800"}
- ,{"name": "VREvent_ChaperoneUniverseHasChanged","value": "801"}
- ,{"name": "VREvent_ChaperoneTempDataHasChanged","value": "802"}
- ,{"name": "VREvent_ChaperoneSettingsHaveChanged","value": "803"}
- ,{"name": "VREvent_SeatedZeroPoseReset","value": "804"}
- ,{"name": "VREvent_AudioSettingsHaveChanged","value": "820"}
- ,{"name": "VREvent_BackgroundSettingHasChanged","value": "850"}
- ,{"name": "VREvent_CameraSettingsHaveChanged","value": "851"}
- ,{"name": "VREvent_ReprojectionSettingHasChanged","value": "852"}
- ,{"name": "VREvent_ModelSkinSettingsHaveChanged","value": "853"}
- ,{"name": "VREvent_EnvironmentSettingsHaveChanged","value": "854"}
- ,{"name": "VREvent_StatusUpdate","value": "900"}
- ,{"name": "VREvent_MCImageUpdated","value": "1000"}
- ,{"name": "VREvent_FirmwareUpdateStarted","value": "1100"}
- ,{"name": "VREvent_FirmwareUpdateFinished","value": "1101"}
- ,{"name": "VREvent_KeyboardClosed","value": "1200"}
- ,{"name": "VREvent_KeyboardCharInput","value": "1201"}
- ,{"name": "VREvent_KeyboardDone","value": "1202"}
- ,{"name": "VREvent_ApplicationTransitionStarted","value": "1300"}
- ,{"name": "VREvent_ApplicationTransitionAborted","value": "1301"}
- ,{"name": "VREvent_ApplicationTransitionNewAppStarted","value": "1302"}
- ,{"name": "VREvent_ApplicationListUpdated","value": "1303"}
- ,{"name": "VREvent_Compositor_MirrorWindowShown","value": "1400"}
- ,{"name": "VREvent_Compositor_MirrorWindowHidden","value": "1401"}
- ,{"name": "VREvent_Compositor_ChaperoneBoundsShown","value": "1410"}
- ,{"name": "VREvent_Compositor_ChaperoneBoundsHidden","value": "1411"}
- ,{"name": "VREvent_TrackedCamera_StartVideoStream","value": "1500"}
- ,{"name": "VREvent_TrackedCamera_StopVideoStream","value": "1501"}
- ,{"name": "VREvent_TrackedCamera_PauseVideoStream","value": "1502"}
- ,{"name": "VREvent_TrackedCamera_ResumeVideoStream","value": "1503"}
- ,{"name": "VREvent_PerformanceTest_EnableCapture","value": "1600"}
- ,{"name": "VREvent_PerformanceTest_DisableCapture","value": "1601"}
- ,{"name": "VREvent_PerformanceTest_FidelityLevel","value": "1602"}
- ,{"name": "VREvent_VendorSpecific_Reserved_Start","value": "10000"}
- ,{"name": "VREvent_VendorSpecific_Reserved_End","value": "19999"}
- ]}
- , {"enumname": "vr::EDeviceActivityLevel","values": [
- {"name": "k_EDeviceActivityLevel_Unknown","value": "-1"}
- ,{"name": "k_EDeviceActivityLevel_Idle","value": "0"}
- ,{"name": "k_EDeviceActivityLevel_UserInteraction","value": "1"}
- ,{"name": "k_EDeviceActivityLevel_UserInteraction_Timeout","value": "2"}
- ,{"name": "k_EDeviceActivityLevel_Standby","value": "3"}
- ]}
- , {"enumname": "vr::EVRButtonId","values": [
- {"name": "k_EButton_System","value": "0"}
- ,{"name": "k_EButton_ApplicationMenu","value": "1"}
- ,{"name": "k_EButton_Grip","value": "2"}
- ,{"name": "k_EButton_DPad_Left","value": "3"}
- ,{"name": "k_EButton_DPad_Up","value": "4"}
- ,{"name": "k_EButton_DPad_Right","value": "5"}
- ,{"name": "k_EButton_DPad_Down","value": "6"}
- ,{"name": "k_EButton_A","value": "7"}
- ,{"name": "k_EButton_Axis0","value": "32"}
- ,{"name": "k_EButton_Axis1","value": "33"}
- ,{"name": "k_EButton_Axis2","value": "34"}
- ,{"name": "k_EButton_Axis3","value": "35"}
- ,{"name": "k_EButton_Axis4","value": "36"}
- ,{"name": "k_EButton_SteamVR_Touchpad","value": "32"}
- ,{"name": "k_EButton_SteamVR_Trigger","value": "33"}
- ,{"name": "k_EButton_Dashboard_Back","value": "2"}
- ,{"name": "k_EButton_Max","value": "64"}
- ]}
- , {"enumname": "vr::EVRMouseButton","values": [
- {"name": "VRMouseButton_Left","value": "1"}
- ,{"name": "VRMouseButton_Right","value": "2"}
- ,{"name": "VRMouseButton_Middle","value": "4"}
- ]}
- , {"enumname": "vr::EVRControllerAxisType","values": [
- {"name": "k_eControllerAxis_None","value": "0"}
- ,{"name": "k_eControllerAxis_TrackPad","value": "1"}
- ,{"name": "k_eControllerAxis_Joystick","value": "2"}
- ,{"name": "k_eControllerAxis_Trigger","value": "3"}
- ]}
- , {"enumname": "vr::EVRControllerEventOutputType","values": [
- {"name": "ControllerEventOutput_OSEvents","value": "0"}
- ,{"name": "ControllerEventOutput_VREvents","value": "1"}
- ]}
- , {"enumname": "vr::ECollisionBoundsStyle","values": [
- {"name": "COLLISION_BOUNDS_STYLE_BEGINNER","value": "0"}
- ,{"name": "COLLISION_BOUNDS_STYLE_INTERMEDIATE","value": "1"}
- ,{"name": "COLLISION_BOUNDS_STYLE_SQUARES","value": "2"}
- ,{"name": "COLLISION_BOUNDS_STYLE_ADVANCED","value": "3"}
- ,{"name": "COLLISION_BOUNDS_STYLE_NONE","value": "4"}
- ,{"name": "COLLISION_BOUNDS_STYLE_COUNT","value": "5"}
- ]}
- , {"enumname": "vr::EVROverlayError","values": [
- {"name": "VROverlayError_None","value": "0"}
- ,{"name": "VROverlayError_UnknownOverlay","value": "10"}
- ,{"name": "VROverlayError_InvalidHandle","value": "11"}
- ,{"name": "VROverlayError_PermissionDenied","value": "12"}
- ,{"name": "VROverlayError_OverlayLimitExceeded","value": "13"}
- ,{"name": "VROverlayError_WrongVisibilityType","value": "14"}
- ,{"name": "VROverlayError_KeyTooLong","value": "15"}
- ,{"name": "VROverlayError_NameTooLong","value": "16"}
- ,{"name": "VROverlayError_KeyInUse","value": "17"}
- ,{"name": "VROverlayError_WrongTransformType","value": "18"}
- ,{"name": "VROverlayError_InvalidTrackedDevice","value": "19"}
- ,{"name": "VROverlayError_InvalidParameter","value": "20"}
- ,{"name": "VROverlayError_ThumbnailCantBeDestroyed","value": "21"}
- ,{"name": "VROverlayError_ArrayTooSmall","value": "22"}
- ,{"name": "VROverlayError_RequestFailed","value": "23"}
- ,{"name": "VROverlayError_InvalidTexture","value": "24"}
- ,{"name": "VROverlayError_UnableToLoadFile","value": "25"}
- ,{"name": "VROVerlayError_KeyboardAlreadyInUse","value": "26"}
- ,{"name": "VROverlayError_NoNeighbor","value": "27"}
- ]}
- , {"enumname": "vr::EVRApplicationType","values": [
- {"name": "VRApplication_Other","value": "0"}
- ,{"name": "VRApplication_Scene","value": "1"}
- ,{"name": "VRApplication_Overlay","value": "2"}
- ,{"name": "VRApplication_Background","value": "3"}
- ,{"name": "VRApplication_Utility","value": "4"}
- ,{"name": "VRApplication_VRMonitor","value": "5"}
- ]}
- , {"enumname": "vr::EVRFirmwareError","values": [
- {"name": "VRFirmwareError_None","value": "0"}
- ,{"name": "VRFirmwareError_Success","value": "1"}
- ,{"name": "VRFirmwareError_Fail","value": "2"}
- ]}
- , {"enumname": "vr::EVRNotificationError","values": [
- {"name": "VRNotificationError_OK","value": "0"}
- ,{"name": "VRNotificationError_InvalidNotificationId","value": "100"}
- ,{"name": "VRNotificationError_NotificationQueueFull","value": "101"}
- ,{"name": "VRNotificationError_InvalidOverlayHandle","value": "102"}
- ,{"name": "VRNotificationError_SystemWithUserValueAlreadyExists","value": "103"}
- ]}
- , {"enumname": "vr::EVRInitError","values": [
- {"name": "VRInitError_None","value": "0"}
- ,{"name": "VRInitError_Unknown","value": "1"}
- ,{"name": "VRInitError_Init_InstallationNotFound","value": "100"}
- ,{"name": "VRInitError_Init_InstallationCorrupt","value": "101"}
- ,{"name": "VRInitError_Init_VRClientDLLNotFound","value": "102"}
- ,{"name": "VRInitError_Init_FileNotFound","value": "103"}
- ,{"name": "VRInitError_Init_FactoryNotFound","value": "104"}
- ,{"name": "VRInitError_Init_InterfaceNotFound","value": "105"}
- ,{"name": "VRInitError_Init_InvalidInterface","value": "106"}
- ,{"name": "VRInitError_Init_UserConfigDirectoryInvalid","value": "107"}
- ,{"name": "VRInitError_Init_HmdNotFound","value": "108"}
- ,{"name": "VRInitError_Init_NotInitialized","value": "109"}
- ,{"name": "VRInitError_Init_PathRegistryNotFound","value": "110"}
- ,{"name": "VRInitError_Init_NoConfigPath","value": "111"}
- ,{"name": "VRInitError_Init_NoLogPath","value": "112"}
- ,{"name": "VRInitError_Init_PathRegistryNotWritable","value": "113"}
- ,{"name": "VRInitError_Init_AppInfoInitFailed","value": "114"}
- ,{"name": "VRInitError_Init_Retry","value": "115"}
- ,{"name": "VRInitError_Init_InitCanceledByUser","value": "116"}
- ,{"name": "VRInitError_Init_AnotherAppLaunching","value": "117"}
- ,{"name": "VRInitError_Init_SettingsInitFailed","value": "118"}
- ,{"name": "VRInitError_Init_ShuttingDown","value": "119"}
- ,{"name": "VRInitError_Init_TooManyObjects","value": "120"}
- ,{"name": "VRInitError_Init_NoServerForBackgroundApp","value": "121"}
- ,{"name": "VRInitError_Init_NotSupportedWithCompositor","value": "122"}
- ,{"name": "VRInitError_Init_NotAvailableToUtilityApps","value": "123"}
- ,{"name": "VRInitError_Init_Internal","value": "124"}
- ,{"name": "VRInitError_Driver_Failed","value": "200"}
- ,{"name": "VRInitError_Driver_Unknown","value": "201"}
- ,{"name": "VRInitError_Driver_HmdUnknown","value": "202"}
- ,{"name": "VRInitError_Driver_NotLoaded","value": "203"}
- ,{"name": "VRInitError_Driver_RuntimeOutOfDate","value": "204"}
- ,{"name": "VRInitError_Driver_HmdInUse","value": "205"}
- ,{"name": "VRInitError_Driver_NotCalibrated","value": "206"}
- ,{"name": "VRInitError_Driver_CalibrationInvalid","value": "207"}
- ,{"name": "VRInitError_Driver_HmdDisplayNotFound","value": "208"}
- ,{"name": "VRInitError_IPC_ServerInitFailed","value": "300"}
- ,{"name": "VRInitError_IPC_ConnectFailed","value": "301"}
- ,{"name": "VRInitError_IPC_SharedStateInitFailed","value": "302"}
- ,{"name": "VRInitError_IPC_CompositorInitFailed","value": "303"}
- ,{"name": "VRInitError_IPC_MutexInitFailed","value": "304"}
- ,{"name": "VRInitError_IPC_Failed","value": "305"}
- ,{"name": "VRInitError_Compositor_Failed","value": "400"}
- ,{"name": "VRInitError_Compositor_D3D11HardwareRequired","value": "401"}
- ,{"name": "VRInitError_Compositor_FirmwareRequiresUpdate","value": "402"}
- ,{"name": "VRInitError_VendorSpecific_UnableToConnectToOculusRuntime","value": "1000"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_CantOpenDevice","value": "1101"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UnableToRequestConfigStart","value": "1102"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_NoStoredConfig","value": "1103"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_ConfigTooBig","value": "1104"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_ConfigTooSmall","value": "1105"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UnableToInitZLib","value": "1106"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_CantReadFirmwareVersion","value": "1107"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UnableToSendUserDataStart","value": "1108"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UnableToGetUserDataStart","value": "1109"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UnableToGetUserDataNext","value": "1110"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UserDataAddressRange","value": "1111"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_UserDataError","value": "1112"}
- ,{"name": "VRInitError_VendorSpecific_HmdFound_ConfigFailedSanityCheck","value": "1113"}
- ,{"name": "VRInitError_Steam_SteamInstallationNotFound","value": "2000"}
- ]}
- , {"enumname": "vr::EVRScreenshotType","values": [
- {"name": "VRScreenshotType_None","value": "0"}
- ,{"name": "VRScreenshotType_Mono","value": "1"}
- ,{"name": "VRScreenshotType_Stereo","value": "2"}
- ,{"name": "VRScreenshotType_Cubemap","value": "3"}
- ,{"name": "VRScreenshotType_StereoPanorama","value": "4"}
- ]}
- , {"enumname": "vr::EVRTrackedCameraError","values": [
- {"name": "VRTrackedCameraError_None","value": "0"}
- ,{"name": "VRTrackedCameraError_OperationFailed","value": "100"}
- ,{"name": "VRTrackedCameraError_InvalidHandle","value": "101"}
- ,{"name": "VRTrackedCameraError_InvalidFrameHeaderVersion","value": "102"}
- ,{"name": "VRTrackedCameraError_OutOfHandles","value": "103"}
- ,{"name": "VRTrackedCameraError_IPCFailure","value": "104"}
- ,{"name": "VRTrackedCameraError_NotSupportedForThisDevice","value": "105"}
- ,{"name": "VRTrackedCameraError_SharedMemoryFailure","value": "106"}
- ,{"name": "VRTrackedCameraError_FrameBufferingFailure","value": "107"}
- ,{"name": "VRTrackedCameraError_StreamSetupFailure","value": "108"}
- ,{"name": "VRTrackedCameraError_InvalidGLTextureId","value": "109"}
- ,{"name": "VRTrackedCameraError_InvalidSharedTextureHandle","value": "110"}
- ,{"name": "VRTrackedCameraError_FailedToGetGLTextureId","value": "111"}
- ,{"name": "VRTrackedCameraError_SharedTextureFailure","value": "112"}
- ,{"name": "VRTrackedCameraError_NoFrameAvailable","value": "113"}
- ,{"name": "VRTrackedCameraError_InvalidArgument","value": "114"}
- ,{"name": "VRTrackedCameraError_InvalidFrameBufferSize","value": "115"}
- ]}
- , {"enumname": "vr::EVRTrackedCameraFrameType","values": [
- {"name": "VRTrackedCameraFrameType_Distorted","value": "0"}
- ,{"name": "VRTrackedCameraFrameType_Undistorted","value": "1"}
- ,{"name": "VRTrackedCameraFrameType_MaximumUndistorted","value": "2"}
- ,{"name": "MAX_CAMERA_FRAME_TYPES","value": "3"}
- ]}
- , {"enumname": "vr::EVRApplicationError","values": [
- {"name": "VRApplicationError_None","value": "0"}
- ,{"name": "VRApplicationError_AppKeyAlreadyExists","value": "100"}
- ,{"name": "VRApplicationError_NoManifest","value": "101"}
- ,{"name": "VRApplicationError_NoApplication","value": "102"}
- ,{"name": "VRApplicationError_InvalidIndex","value": "103"}
- ,{"name": "VRApplicationError_UnknownApplication","value": "104"}
- ,{"name": "VRApplicationError_IPCFailed","value": "105"}
- ,{"name": "VRApplicationError_ApplicationAlreadyRunning","value": "106"}
- ,{"name": "VRApplicationError_InvalidManifest","value": "107"}
- ,{"name": "VRApplicationError_InvalidApplication","value": "108"}
- ,{"name": "VRApplicationError_LaunchFailed","value": "109"}
- ,{"name": "VRApplicationError_ApplicationAlreadyStarting","value": "110"}
- ,{"name": "VRApplicationError_LaunchInProgress","value": "111"}
- ,{"name": "VRApplicationError_OldApplicationQuitting","value": "112"}
- ,{"name": "VRApplicationError_TransitionAborted","value": "113"}
- ,{"name": "VRApplicationError_IsTemplate","value": "114"}
- ,{"name": "VRApplicationError_BufferTooSmall","value": "200"}
- ,{"name": "VRApplicationError_PropertyNotSet","value": "201"}
- ,{"name": "VRApplicationError_UnknownProperty","value": "202"}
- ,{"name": "VRApplicationError_InvalidParameter","value": "203"}
- ]}
- , {"enumname": "vr::EVRApplicationProperty","values": [
- {"name": "VRApplicationProperty_Name_String","value": "0"}
- ,{"name": "VRApplicationProperty_LaunchType_String","value": "11"}
- ,{"name": "VRApplicationProperty_WorkingDirectory_String","value": "12"}
- ,{"name": "VRApplicationProperty_BinaryPath_String","value": "13"}
- ,{"name": "VRApplicationProperty_Arguments_String","value": "14"}
- ,{"name": "VRApplicationProperty_URL_String","value": "15"}
- ,{"name": "VRApplicationProperty_Description_String","value": "50"}
- ,{"name": "VRApplicationProperty_NewsURL_String","value": "51"}
- ,{"name": "VRApplicationProperty_ImagePath_String","value": "52"}
- ,{"name": "VRApplicationProperty_Source_String","value": "53"}
- ,{"name": "VRApplicationProperty_IsDashboardOverlay_Bool","value": "60"}
- ,{"name": "VRApplicationProperty_IsTemplate_Bool","value": "61"}
- ,{"name": "VRApplicationProperty_IsInstanced_Bool","value": "62"}
- ,{"name": "VRApplicationProperty_LastLaunchTime_Uint64","value": "70"}
- ]}
- , {"enumname": "vr::EVRApplicationTransitionState","values": [
- {"name": "VRApplicationTransition_None","value": "0"}
- ,{"name": "VRApplicationTransition_OldAppQuitSent","value": "10"}
- ,{"name": "VRApplicationTransition_WaitingForExternalLaunch","value": "11"}
- ,{"name": "VRApplicationTransition_NewAppLaunched","value": "20"}
- ]}
- , {"enumname": "vr::ChaperoneCalibrationState","values": [
- {"name": "ChaperoneCalibrationState_OK","value": "1"}
- ,{"name": "ChaperoneCalibrationState_Warning","value": "100"}
- ,{"name": "ChaperoneCalibrationState_Warning_BaseStationMayHaveMoved","value": "101"}
- ,{"name": "ChaperoneCalibrationState_Warning_BaseStationRemoved","value": "102"}
- ,{"name": "ChaperoneCalibrationState_Warning_SeatedBoundsInvalid","value": "103"}
- ,{"name": "ChaperoneCalibrationState_Error","value": "200"}
- ,{"name": "ChaperoneCalibrationState_Error_BaseStationUninitalized","value": "201"}
- ,{"name": "ChaperoneCalibrationState_Error_BaseStationConflict","value": "202"}
- ,{"name": "ChaperoneCalibrationState_Error_PlayAreaInvalid","value": "203"}
- ,{"name": "ChaperoneCalibrationState_Error_CollisionBoundsInvalid","value": "204"}
- ]}
- , {"enumname": "vr::EChaperoneConfigFile","values": [
- {"name": "EChaperoneConfigFile_Live","value": "1"}
- ,{"name": "EChaperoneConfigFile_Temp","value": "2"}
- ]}
- , {"enumname": "vr::EChaperoneImportFlags","values": [
- {"name": "EChaperoneImport_BoundsOnly","value": "1"}
- ]}
- , {"enumname": "vr::EVRCompositorError","values": [
- {"name": "VRCompositorError_None","value": "0"}
- ,{"name": "VRCompositorError_RequestFailed","value": "1"}
- ,{"name": "VRCompositorError_IncompatibleVersion","value": "100"}
- ,{"name": "VRCompositorError_DoNotHaveFocus","value": "101"}
- ,{"name": "VRCompositorError_InvalidTexture","value": "102"}
- ,{"name": "VRCompositorError_IsNotSceneApplication","value": "103"}
- ,{"name": "VRCompositorError_TextureIsOnWrongDevice","value": "104"}
- ,{"name": "VRCompositorError_TextureUsesUnsupportedFormat","value": "105"}
- ,{"name": "VRCompositorError_SharedTexturesNotSupported","value": "106"}
- ,{"name": "VRCompositorError_IndexOutOfRange","value": "107"}
- ,{"name": "VRCompositorError_ScreenshotAlreadyInProgress","value": "108"}
- ]}
- , {"enumname": "vr::VROverlayInputMethod","values": [
- {"name": "VROverlayInputMethod_None","value": "0"}
- ,{"name": "VROverlayInputMethod_Mouse","value": "1"}
- ]}
- , {"enumname": "vr::VROverlayTransformType","values": [
- {"name": "VROverlayTransform_Absolute","value": "0"}
- ,{"name": "VROverlayTransform_TrackedDeviceRelative","value": "1"}
- ,{"name": "VROverlayTransform_SystemOverlay","value": "2"}
- ,{"name": "VROverlayTransform_TrackedComponent","value": "3"}
- ]}
- , {"enumname": "vr::VROverlayFlags","values": [
- {"name": "VROverlayFlags_None","value": "0"}
- ,{"name": "VROverlayFlags_Curved","value": "1"}
- ,{"name": "VROverlayFlags_RGSS4X","value": "2"}
- ,{"name": "VROverlayFlags_NoDashboardTab","value": "3"}
- ,{"name": "VROverlayFlags_AcceptsGamepadEvents","value": "4"}
- ,{"name": "VROverlayFlags_ShowGamepadFocus","value": "5"}
- ,{"name": "VROverlayFlags_SendVRScrollEvents","value": "6"}
- ,{"name": "VROverlayFlags_SendVRTouchpadEvents","value": "7"}
- ,{"name": "VROverlayFlags_ShowTouchPadScrollWheel","value": "8"}
- ,{"name": "VROverlayFlags_TransferOwnershipToInternalProcess","value": "9"}
- ,{"name": "VROverlayFlags_SideBySide_Parallel","value": "10"}
- ,{"name": "VROverlayFlags_SideBySide_Crossed","value": "11"}
- ,{"name": "VROverlayFlags_Panorama","value": "12"}
- ,{"name": "VROverlayFlags_StereoPanorama","value": "13"}
- ]}
- , {"enumname": "vr::EGamepadTextInputMode","values": [
- {"name": "k_EGamepadTextInputModeNormal","value": "0"}
- ,{"name": "k_EGamepadTextInputModePassword","value": "1"}
- ,{"name": "k_EGamepadTextInputModeSubmit","value": "2"}
- ]}
- , {"enumname": "vr::EGamepadTextInputLineMode","values": [
- {"name": "k_EGamepadTextInputLineModeSingleLine","value": "0"}
- ,{"name": "k_EGamepadTextInputLineModeMultipleLines","value": "1"}
- ]}
- , {"enumname": "vr::EOverlayDirection","values": [
- {"name": "OverlayDirection_Up","value": "0"}
- ,{"name": "OverlayDirection_Down","value": "1"}
- ,{"name": "OverlayDirection_Left","value": "2"}
- ,{"name": "OverlayDirection_Right","value": "3"}
- ,{"name": "OverlayDirection_Count","value": "4"}
- ]}
- , {"enumname": "vr::EVRRenderModelError","values": [
- {"name": "VRRenderModelError_None","value": "0"}
- ,{"name": "VRRenderModelError_Loading","value": "100"}
- ,{"name": "VRRenderModelError_NotSupported","value": "200"}
- ,{"name": "VRRenderModelError_InvalidArg","value": "300"}
- ,{"name": "VRRenderModelError_InvalidModel","value": "301"}
- ,{"name": "VRRenderModelError_NoShapes","value": "302"}
- ,{"name": "VRRenderModelError_MultipleShapes","value": "303"}
- ,{"name": "VRRenderModelError_TooManyVertices","value": "304"}
- ,{"name": "VRRenderModelError_MultipleTextures","value": "305"}
- ,{"name": "VRRenderModelError_BufferTooSmall","value": "306"}
- ,{"name": "VRRenderModelError_NotEnoughNormals","value": "307"}
- ,{"name": "VRRenderModelError_NotEnoughTexCoords","value": "308"}
- ,{"name": "VRRenderModelError_InvalidTexture","value": "400"}
- ]}
- , {"enumname": "vr::EVRComponentProperty","values": [
- {"name": "VRComponentProperty_IsStatic","value": "1"}
- ,{"name": "VRComponentProperty_IsVisible","value": "2"}
- ,{"name": "VRComponentProperty_IsTouched","value": "4"}
- ,{"name": "VRComponentProperty_IsPressed","value": "8"}
- ,{"name": "VRComponentProperty_IsScrolled","value": "16"}
- ]}
- , {"enumname": "vr::EVRNotificationType","values": [
- {"name": "EVRNotificationType_Transient","value": "0"}
- ,{"name": "EVRNotificationType_Persistent","value": "1"}
- ,{"name": "EVRNotificationType_Transient_SystemWithUserValue","value": "2"}
- ]}
- , {"enumname": "vr::EVRNotificationStyle","values": [
- {"name": "EVRNotificationStyle_None","value": "0"}
- ,{"name": "EVRNotificationStyle_Application","value": "100"}
- ,{"name": "EVRNotificationStyle_Contact_Disabled","value": "200"}
- ,{"name": "EVRNotificationStyle_Contact_Enabled","value": "201"}
- ,{"name": "EVRNotificationStyle_Contact_Active","value": "202"}
- ]}
- , {"enumname": "vr::EVRSettingsError","values": [
- {"name": "VRSettingsError_None","value": "0"}
- ,{"name": "VRSettingsError_IPCFailed","value": "1"}
- ,{"name": "VRSettingsError_WriteFailed","value": "2"}
- ,{"name": "VRSettingsError_ReadFailed","value": "3"}
- ]}
- ],
- "consts":[{
- "constname": "k_unTrackingStringSize","consttype": "const uint32_t", "constval": "32"}
- ,{
- "constname": "k_unMaxDriverDebugResponseSize","consttype": "const uint32_t", "constval": "32768"}
- ,{
- "constname": "k_unTrackedDeviceIndex_Hmd","consttype": "const uint32_t", "constval": "0"}
- ,{
- "constname": "k_unMaxTrackedDeviceCount","consttype": "const uint32_t", "constval": "16"}
- ,{
- "constname": "k_unTrackedDeviceIndexOther","consttype": "const uint32_t", "constval": "4294967294"}
- ,{
- "constname": "k_unTrackedDeviceIndexInvalid","consttype": "const uint32_t", "constval": "4294967295"}
- ,{
- "constname": "k_unMaxPropertyStringSize","consttype": "const uint32_t", "constval": "32768"}
- ,{
- "constname": "k_unControllerStateAxisCount","consttype": "const uint32_t", "constval": "5"}
- ,{
- "constname": "k_ulOverlayHandleInvalid","consttype": "const VROverlayHandle_t", "constval": "0"}
- ,{
- "constname": "IVRSystem_Version","consttype": "const char *const", "constval": "IVRSystem_012"}
- ,{
- "constname": "IVRExtendedDisplay_Version","consttype": "const char *const", "constval": "IVRExtendedDisplay_001"}
- ,{
- "constname": "IVRTrackedCamera_Version","consttype": "const char *const", "constval": "IVRTrackedCamera_002"}
- ,{
- "constname": "k_unMaxApplicationKeyLength","consttype": "const uint32_t", "constval": "128"}
- ,{
- "constname": "IVRApplications_Version","consttype": "const char *const", "constval": "IVRApplications_005"}
- ,{
- "constname": "IVRChaperone_Version","consttype": "const char *const", "constval": "IVRChaperone_003"}
- ,{
- "constname": "IVRChaperoneSetup_Version","consttype": "const char *const", "constval": "IVRChaperoneSetup_005"}
- ,{
- "constname": "IVRCompositor_Version","consttype": "const char *const", "constval": "IVRCompositor_015"}
- ,{
- "constname": "k_unVROverlayMaxKeyLength","consttype": "const uint32_t", "constval": "128"}
- ,{
- "constname": "k_unVROverlayMaxNameLength","consttype": "const uint32_t", "constval": "128"}
- ,{
- "constname": "k_unMaxOverlayCount","consttype": "const uint32_t", "constval": "32"}
- ,{
- "constname": "IVROverlay_Version","consttype": "const char *const", "constval": "IVROverlay_012"}
- ,{
- "constname": "k_pch_Controller_Component_GDC2015","consttype": "const char *const", "constval": "gdc2015"}
- ,{
- "constname": "k_pch_Controller_Component_Base","consttype": "const char *const", "constval": "base"}
- ,{
- "constname": "k_pch_Controller_Component_Tip","consttype": "const char *const", "constval": "tip"}
- ,{
- "constname": "k_pch_Controller_Component_HandGrip","consttype": "const char *const", "constval": "handgrip"}
- ,{
- "constname": "k_pch_Controller_Component_Status","consttype": "const char *const", "constval": "status"}
- ,{
- "constname": "IVRRenderModels_Version","consttype": "const char *const", "constval": "IVRRenderModels_005"}
- ,{
- "constname": "k_unNotificationTextMaxSize","consttype": "const uint32_t", "constval": "256"}
- ,{
- "constname": "IVRNotifications_Version","consttype": "const char *const", "constval": "IVRNotifications_002"}
- ,{
- "constname": "k_unMaxSettingsKeyLength","consttype": "const uint32_t", "constval": "128"}
- ,{
- "constname": "IVRSettings_Version","consttype": "const char *const", "constval": "IVRSettings_001"}
- ,{
- "constname": "k_pch_SteamVR_Section","consttype": "const char *const", "constval": "steamvr"}
- ,{
- "constname": "k_pch_SteamVR_RequireHmd_String","consttype": "const char *const", "constval": "requireHmd"}
- ,{
- "constname": "k_pch_SteamVR_ForcedDriverKey_String","consttype": "const char *const", "constval": "forcedDriver"}
- ,{
- "constname": "k_pch_SteamVR_ForcedHmdKey_String","consttype": "const char *const", "constval": "forcedHmd"}
- ,{
- "constname": "k_pch_SteamVR_DisplayDebug_Bool","consttype": "const char *const", "constval": "displayDebug"}
- ,{
- "constname": "k_pch_SteamVR_DebugProcessPipe_String","consttype": "const char *const", "constval": "debugProcessPipe"}
- ,{
- "constname": "k_pch_SteamVR_EnableDistortion_Bool","consttype": "const char *const", "constval": "enableDistortion"}
- ,{
- "constname": "k_pch_SteamVR_DisplayDebugX_Int32","consttype": "const char *const", "constval": "displayDebugX"}
- ,{
- "constname": "k_pch_SteamVR_DisplayDebugY_Int32","consttype": "const char *const", "constval": "displayDebugY"}
- ,{
- "constname": "k_pch_SteamVR_SendSystemButtonToAllApps_Bool","consttype": "const char *const", "constval": "sendSystemButtonToAllApps"}
- ,{
- "constname": "k_pch_SteamVR_LogLevel_Int32","consttype": "const char *const", "constval": "loglevel"}
- ,{
- "constname": "k_pch_SteamVR_IPD_Float","consttype": "const char *const", "constval": "ipd"}
- ,{
- "constname": "k_pch_SteamVR_Background_String","consttype": "const char *const", "constval": "background"}
- ,{
- "constname": "k_pch_SteamVR_BackgroundCameraHeight_Float","consttype": "const char *const", "constval": "backgroundCameraHeight"}
- ,{
- "constname": "k_pch_SteamVR_BackgroundDomeRadius_Float","consttype": "const char *const", "constval": "backgroundDomeRadius"}
- ,{
- "constname": "k_pch_SteamVR_Environment_String","consttype": "const char *const", "constval": "environment"}
- ,{
- "constname": "k_pch_SteamVR_GridColor_String","consttype": "const char *const", "constval": "gridColor"}
- ,{
- "constname": "k_pch_SteamVR_PlayAreaColor_String","consttype": "const char *const", "constval": "playAreaColor"}
- ,{
- "constname": "k_pch_SteamVR_ShowStage_Bool","consttype": "const char *const", "constval": "showStage"}
- ,{
- "constname": "k_pch_SteamVR_ActivateMultipleDrivers_Bool","consttype": "const char *const", "constval": "activateMultipleDrivers"}
- ,{
- "constname": "k_pch_SteamVR_PowerOffOnExit_Bool","consttype": "const char *const", "constval": "powerOffOnExit"}
- ,{
- "constname": "k_pch_SteamVR_StandbyAppRunningTimeout_Float","consttype": "const char *const", "constval": "standbyAppRunningTimeout"}
- ,{
- "constname": "k_pch_SteamVR_StandbyNoAppTimeout_Float","consttype": "const char *const", "constval": "standbyNoAppTimeout"}
- ,{
- "constname": "k_pch_SteamVR_DirectMode_Bool","consttype": "const char *const", "constval": "directMode"}
- ,{
- "constname": "k_pch_SteamVR_DirectModeEdidVid_Int32","consttype": "const char *const", "constval": "directModeEdidVid"}
- ,{
- "constname": "k_pch_SteamVR_DirectModeEdidPid_Int32","consttype": "const char *const", "constval": "directModeEdidPid"}
- ,{
- "constname": "k_pch_SteamVR_UsingSpeakers_Bool","consttype": "const char *const", "constval": "usingSpeakers"}
- ,{
- "constname": "k_pch_SteamVR_SpeakersForwardYawOffsetDegrees_Float","consttype": "const char *const", "constval": "speakersForwardYawOffsetDegrees"}
- ,{
- "constname": "k_pch_SteamVR_BaseStationPowerManagement_Bool","consttype": "const char *const", "constval": "basestationPowerManagement"}
- ,{
- "constname": "k_pch_SteamVR_NeverKillProcesses_Bool","consttype": "const char *const", "constval": "neverKillProcesses"}
- ,{
- "constname": "k_pch_SteamVR_RenderTargetMultiplier_Float","consttype": "const char *const", "constval": "renderTargetMultiplier"}
- ,{
- "constname": "k_pch_SteamVR_AllowReprojection_Bool","consttype": "const char *const", "constval": "allowReprojection"}
- ,{
- "constname": "k_pch_Lighthouse_Section","consttype": "const char *const", "constval": "driver_lighthouse"}
- ,{
- "constname": "k_pch_Lighthouse_DisableIMU_Bool","consttype": "const char *const", "constval": "disableimu"}
- ,{
- "constname": "k_pch_Lighthouse_UseDisambiguation_String","consttype": "const char *const", "constval": "usedisambiguation"}
- ,{
- "constname": "k_pch_Lighthouse_DisambiguationDebug_Int32","consttype": "const char *const", "constval": "disambiguationdebug"}
- ,{
- "constname": "k_pch_Lighthouse_PrimaryBasestation_Int32","consttype": "const char *const", "constval": "primarybasestation"}
- ,{
- "constname": "k_pch_Lighthouse_LighthouseName_String","consttype": "const char *const", "constval": "lighthousename"}
- ,{
- "constname": "k_pch_Lighthouse_MaxIncidenceAngleDegrees_Float","consttype": "const char *const", "constval": "maxincidenceangledegrees"}
- ,{
- "constname": "k_pch_Lighthouse_UseLighthouseDirect_Bool","consttype": "const char *const", "constval": "uselighthousedirect"}
- ,{
- "constname": "k_pch_Lighthouse_DBHistory_Bool","consttype": "const char *const", "constval": "dbhistory"}
- ,{
- "constname": "k_pch_Null_Section","consttype": "const char *const", "constval": "driver_null"}
- ,{
- "constname": "k_pch_Null_EnableNullDriver_Bool","consttype": "const char *const", "constval": "enable"}
- ,{
- "constname": "k_pch_Null_SerialNumber_String","consttype": "const char *const", "constval": "serialNumber"}
- ,{
- "constname": "k_pch_Null_ModelNumber_String","consttype": "const char *const", "constval": "modelNumber"}
- ,{
- "constname": "k_pch_Null_WindowX_Int32","consttype": "const char *const", "constval": "windowX"}
- ,{
- "constname": "k_pch_Null_WindowY_Int32","consttype": "const char *const", "constval": "windowY"}
- ,{
- "constname": "k_pch_Null_WindowWidth_Int32","consttype": "const char *const", "constval": "windowWidth"}
- ,{
- "constname": "k_pch_Null_WindowHeight_Int32","consttype": "const char *const", "constval": "windowHeight"}
- ,{
- "constname": "k_pch_Null_RenderWidth_Int32","consttype": "const char *const", "constval": "renderWidth"}
- ,{
- "constname": "k_pch_Null_RenderHeight_Int32","consttype": "const char *const", "constval": "renderHeight"}
- ,{
- "constname": "k_pch_Null_SecondsFromVsyncToPhotons_Float","consttype": "const char *const", "constval": "secondsFromVsyncToPhotons"}
- ,{
- "constname": "k_pch_Null_DisplayFrequency_Float","consttype": "const char *const", "constval": "displayFrequency"}
- ,{
- "constname": "k_pch_UserInterface_Section","consttype": "const char *const", "constval": "userinterface"}
- ,{
- "constname": "k_pch_UserInterface_StatusAlwaysOnTop_Bool","consttype": "const char *const", "constval": "StatusAlwaysOnTop"}
- ,{
- "constname": "k_pch_UserInterface_EnableScreenshots_Bool","consttype": "const char *const", "constval": "EnableScreenshots"}
- ,{
- "constname": "k_pch_Notifications_Section","consttype": "const char *const", "constval": "notifications"}
- ,{
- "constname": "k_pch_Notifications_DoNotDisturb_Bool","consttype": "const char *const", "constval": "DoNotDisturb"}
- ,{
- "constname": "k_pch_Keyboard_Section","consttype": "const char *const", "constval": "keyboard"}
- ,{
- "constname": "k_pch_Keyboard_TutorialCompletions","consttype": "const char *const", "constval": "TutorialCompletions"}
- ,{
- "constname": "k_pch_Keyboard_ScaleX","consttype": "const char *const", "constval": "ScaleX"}
- ,{
- "constname": "k_pch_Keyboard_ScaleY","consttype": "const char *const", "constval": "ScaleY"}
- ,{
- "constname": "k_pch_Keyboard_OffsetLeftX","consttype": "const char *const", "constval": "OffsetLeftX"}
- ,{
- "constname": "k_pch_Keyboard_OffsetRightX","consttype": "const char *const", "constval": "OffsetRightX"}
- ,{
- "constname": "k_pch_Keyboard_OffsetY","consttype": "const char *const", "constval": "OffsetY"}
- ,{
- "constname": "k_pch_Keyboard_Smoothing","consttype": "const char *const", "constval": "Smoothing"}
- ,{
- "constname": "k_pch_Perf_Section","consttype": "const char *const", "constval": "perfcheck"}
- ,{
- "constname": "k_pch_Perf_HeuristicActive_Bool","consttype": "const char *const", "constval": "heuristicActive"}
- ,{
- "constname": "k_pch_Perf_NotifyInHMD_Bool","consttype": "const char *const", "constval": "warnInHMD"}
- ,{
- "constname": "k_pch_Perf_NotifyOnlyOnce_Bool","consttype": "const char *const", "constval": "warnOnlyOnce"}
- ,{
- "constname": "k_pch_Perf_AllowTimingStore_Bool","consttype": "const char *const", "constval": "allowTimingStore"}
- ,{
- "constname": "k_pch_Perf_SaveTimingsOnExit_Bool","consttype": "const char *const", "constval": "saveTimingsOnExit"}
- ,{
- "constname": "k_pch_Perf_TestData_Float","consttype": "const char *const", "constval": "perfTestData"}
- ,{
- "constname": "k_pch_CollisionBounds_Section","consttype": "const char *const", "constval": "collisionBounds"}
- ,{
- "constname": "k_pch_CollisionBounds_Style_Int32","consttype": "const char *const", "constval": "CollisionBoundsStyle"}
- ,{
- "constname": "k_pch_CollisionBounds_GroundPerimeterOn_Bool","consttype": "const char *const", "constval": "CollisionBoundsGroundPerimeterOn"}
- ,{
- "constname": "k_pch_CollisionBounds_CenterMarkerOn_Bool","consttype": "const char *const", "constval": "CollisionBoundsCenterMarkerOn"}
- ,{
- "constname": "k_pch_CollisionBounds_PlaySpaceOn_Bool","consttype": "const char *const", "constval": "CollisionBoundsPlaySpaceOn"}
- ,{
- "constname": "k_pch_CollisionBounds_FadeDistance_Float","consttype": "const char *const", "constval": "CollisionBoundsFadeDistance"}
- ,{
- "constname": "k_pch_CollisionBounds_ColorGammaR_Int32","consttype": "const char *const", "constval": "CollisionBoundsColorGammaR"}
- ,{
- "constname": "k_pch_CollisionBounds_ColorGammaG_Int32","consttype": "const char *const", "constval": "CollisionBoundsColorGammaG"}
- ,{
- "constname": "k_pch_CollisionBounds_ColorGammaB_Int32","consttype": "const char *const", "constval": "CollisionBoundsColorGammaB"}
- ,{
- "constname": "k_pch_CollisionBounds_ColorGammaA_Int32","consttype": "const char *const", "constval": "CollisionBoundsColorGammaA"}
- ,{
- "constname": "k_pch_Camera_Section","consttype": "const char *const", "constval": "camera"}
- ,{
- "constname": "k_pch_Camera_EnableCamera_Bool","consttype": "const char *const", "constval": "enableCamera"}
- ,{
- "constname": "k_pch_Camera_EnableCameraInDashboard_Bool","consttype": "const char *const", "constval": "enableCameraInDashboard"}
- ,{
- "constname": "k_pch_Camera_EnableCameraForCollisionBounds_Bool","consttype": "const char *const", "constval": "enableCameraForCollisionBounds"}
- ,{
- "constname": "k_pch_Camera_EnableCameraForRoomView_Bool","consttype": "const char *const", "constval": "enableCameraForRoomView"}
- ,{
- "constname": "k_pch_Camera_BoundsColorGammaR_Int32","consttype": "const char *const", "constval": "cameraBoundsColorGammaR"}
- ,{
- "constname": "k_pch_Camera_BoundsColorGammaG_Int32","consttype": "const char *const", "constval": "cameraBoundsColorGammaG"}
- ,{
- "constname": "k_pch_Camera_BoundsColorGammaB_Int32","consttype": "const char *const", "constval": "cameraBoundsColorGammaB"}
- ,{
- "constname": "k_pch_Camera_BoundsColorGammaA_Int32","consttype": "const char *const", "constval": "cameraBoundsColorGammaA"}
- ,{
- "constname": "k_pch_audio_Section","consttype": "const char *const", "constval": "audio"}
- ,{
- "constname": "k_pch_audio_OnPlaybackDevice_String","consttype": "const char *const", "constval": "onPlaybackDevice"}
- ,{
- "constname": "k_pch_audio_OnRecordDevice_String","consttype": "const char *const", "constval": "onRecordDevice"}
- ,{
- "constname": "k_pch_audio_OnPlaybackMirrorDevice_String","consttype": "const char *const", "constval": "onPlaybackMirrorDevice"}
- ,{
- "constname": "k_pch_audio_OffPlaybackDevice_String","consttype": "const char *const", "constval": "offPlaybackDevice"}
- ,{
- "constname": "k_pch_audio_OffRecordDevice_String","consttype": "const char *const", "constval": "offRecordDevice"}
- ,{
- "constname": "k_pch_audio_VIVEHDMIGain","consttype": "const char *const", "constval": "viveHDMIGain"}
- ,{
- "constname": "k_pch_modelskin_Section","consttype": "const char *const", "constval": "modelskins"}
- ],
- "structs":[{"struct": "vr::HmdMatrix34_t","fields": [
- { "fieldname": "m", "fieldtype": "float [3][4]"}]}
- ,{"struct": "vr::HmdMatrix44_t","fields": [
- { "fieldname": "m", "fieldtype": "float [4][4]"}]}
- ,{"struct": "vr::HmdVector3_t","fields": [
- { "fieldname": "v", "fieldtype": "float [3]"}]}
- ,{"struct": "vr::HmdVector4_t","fields": [
- { "fieldname": "v", "fieldtype": "float [4]"}]}
- ,{"struct": "vr::HmdVector3d_t","fields": [
- { "fieldname": "v", "fieldtype": "double [3]"}]}
- ,{"struct": "vr::HmdVector2_t","fields": [
- { "fieldname": "v", "fieldtype": "float [2]"}]}
- ,{"struct": "vr::HmdQuaternion_t","fields": [
- { "fieldname": "w", "fieldtype": "double"},
- { "fieldname": "x", "fieldtype": "double"},
- { "fieldname": "y", "fieldtype": "double"},
- { "fieldname": "z", "fieldtype": "double"}]}
- ,{"struct": "vr::HmdColor_t","fields": [
- { "fieldname": "r", "fieldtype": "float"},
- { "fieldname": "g", "fieldtype": "float"},
- { "fieldname": "b", "fieldtype": "float"},
- { "fieldname": "a", "fieldtype": "float"}]}
- ,{"struct": "vr::HmdQuad_t","fields": [
- { "fieldname": "vCorners", "fieldtype": "struct vr::HmdVector3_t [4]"}]}
- ,{"struct": "vr::HmdRect2_t","fields": [
- { "fieldname": "vTopLeft", "fieldtype": "struct vr::HmdVector2_t"},
- { "fieldname": "vBottomRight", "fieldtype": "struct vr::HmdVector2_t"}]}
- ,{"struct": "vr::DistortionCoordinates_t","fields": [
- { "fieldname": "rfRed", "fieldtype": "float [2]"},
- { "fieldname": "rfGreen", "fieldtype": "float [2]"},
- { "fieldname": "rfBlue", "fieldtype": "float [2]"}]}
- ,{"struct": "vr::Texture_t","fields": [
- { "fieldname": "handle", "fieldtype": "void *"},
- { "fieldname": "eType", "fieldtype": "enum vr::EGraphicsAPIConvention"},
- { "fieldname": "eColorSpace", "fieldtype": "enum vr::EColorSpace"}]}
- ,{"struct": "vr::TrackedDevicePose_t","fields": [
- { "fieldname": "mDeviceToAbsoluteTracking", "fieldtype": "struct vr::HmdMatrix34_t"},
- { "fieldname": "vVelocity", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "vAngularVelocity", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "eTrackingResult", "fieldtype": "enum vr::ETrackingResult"},
- { "fieldname": "bPoseIsValid", "fieldtype": "_Bool"},
- { "fieldname": "bDeviceIsConnected", "fieldtype": "_Bool"}]}
- ,{"struct": "vr::VRTextureBounds_t","fields": [
- { "fieldname": "uMin", "fieldtype": "float"},
- { "fieldname": "vMin", "fieldtype": "float"},
- { "fieldname": "uMax", "fieldtype": "float"},
- { "fieldname": "vMax", "fieldtype": "float"}]}
- ,{"struct": "vr::VREvent_Controller_t","fields": [
- { "fieldname": "button", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VREvent_Mouse_t","fields": [
- { "fieldname": "x", "fieldtype": "float"},
- { "fieldname": "y", "fieldtype": "float"},
- { "fieldname": "button", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VREvent_Scroll_t","fields": [
- { "fieldname": "xdelta", "fieldtype": "float"},
- { "fieldname": "ydelta", "fieldtype": "float"},
- { "fieldname": "repeatCount", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VREvent_TouchPadMove_t","fields": [
- { "fieldname": "bFingerDown", "fieldtype": "_Bool"},
- { "fieldname": "flSecondsFingerDown", "fieldtype": "float"},
- { "fieldname": "fValueXFirst", "fieldtype": "float"},
- { "fieldname": "fValueYFirst", "fieldtype": "float"},
- { "fieldname": "fValueXRaw", "fieldtype": "float"},
- { "fieldname": "fValueYRaw", "fieldtype": "float"}]}
- ,{"struct": "vr::VREvent_Notification_t","fields": [
- { "fieldname": "ulUserValue", "fieldtype": "uint64_t"},
- { "fieldname": "notificationId", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VREvent_Process_t","fields": [
- { "fieldname": "pid", "fieldtype": "uint32_t"},
- { "fieldname": "oldPid", "fieldtype": "uint32_t"},
- { "fieldname": "bForced", "fieldtype": "_Bool"}]}
- ,{"struct": "vr::VREvent_Overlay_t","fields": [
- { "fieldname": "overlayHandle", "fieldtype": "uint64_t"}]}
- ,{"struct": "vr::VREvent_Status_t","fields": [
- { "fieldname": "statusState", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VREvent_Keyboard_t","fields": [
- { "fieldname": "cNewInput", "fieldtype": "char [8]"},
- { "fieldname": "uUserValue", "fieldtype": "uint64_t"}]}
- ,{"struct": "vr::VREvent_Ipd_t","fields": [
- { "fieldname": "ipdMeters", "fieldtype": "float"}]}
- ,{"struct": "vr::VREvent_Chaperone_t","fields": [
- { "fieldname": "m_nPreviousUniverse", "fieldtype": "uint64_t"},
- { "fieldname": "m_nCurrentUniverse", "fieldtype": "uint64_t"}]}
- ,{"struct": "vr::VREvent_Reserved_t","fields": [
- { "fieldname": "reserved0", "fieldtype": "uint64_t"},
- { "fieldname": "reserved1", "fieldtype": "uint64_t"}]}
- ,{"struct": "vr::VREvent_PerformanceTest_t","fields": [
- { "fieldname": "m_nFidelityLevel", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VREvent_SeatedZeroPoseReset_t","fields": [
- { "fieldname": "bResetBySystemMenu", "fieldtype": "_Bool"}]}
- ,{"struct": "vr::(anonymous)","fields": [
- { "fieldname": "reserved", "fieldtype": "struct vr::VREvent_Reserved_t"},
- { "fieldname": "controller", "fieldtype": "struct vr::VREvent_Controller_t"},
- { "fieldname": "mouse", "fieldtype": "struct vr::VREvent_Mouse_t"},
- { "fieldname": "scroll", "fieldtype": "struct vr::VREvent_Scroll_t"},
- { "fieldname": "process", "fieldtype": "struct vr::VREvent_Process_t"},
- { "fieldname": "notification", "fieldtype": "struct vr::VREvent_Notification_t"},
- { "fieldname": "overlay", "fieldtype": "struct vr::VREvent_Overlay_t"},
- { "fieldname": "status", "fieldtype": "struct vr::VREvent_Status_t"},
- { "fieldname": "keyboard", "fieldtype": "struct vr::VREvent_Keyboard_t"},
- { "fieldname": "ipd", "fieldtype": "struct vr::VREvent_Ipd_t"},
- { "fieldname": "chaperone", "fieldtype": "struct vr::VREvent_Chaperone_t"},
- { "fieldname": "performanceTest", "fieldtype": "struct vr::VREvent_PerformanceTest_t"},
- { "fieldname": "touchPadMove", "fieldtype": "struct vr::VREvent_TouchPadMove_t"},
- { "fieldname": "seatedZeroPoseReset", "fieldtype": "struct vr::VREvent_SeatedZeroPoseReset_t"}]}
- ,{"struct": "vr::VREvent_t","fields": [
- { "fieldname": "eventType", "fieldtype": "uint32_t"},
- { "fieldname": "trackedDeviceIndex", "fieldtype": "TrackedDeviceIndex_t"},
- { "fieldname": "eventAgeSeconds", "fieldtype": "float"},
- { "fieldname": "data", "fieldtype": "VREvent_Data_t"}]}
- ,{"struct": "vr::HiddenAreaMesh_t","fields": [
- { "fieldname": "pVertexData", "fieldtype": "const struct vr::HmdVector2_t *"},
- { "fieldname": "unTriangleCount", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VRControllerAxis_t","fields": [
- { "fieldname": "x", "fieldtype": "float"},
- { "fieldname": "y", "fieldtype": "float"}]}
- ,{"struct": "vr::VRControllerState001_t","fields": [
- { "fieldname": "unPacketNum", "fieldtype": "uint32_t"},
- { "fieldname": "ulButtonPressed", "fieldtype": "uint64_t"},
- { "fieldname": "ulButtonTouched", "fieldtype": "uint64_t"},
- { "fieldname": "rAxis", "fieldtype": "struct vr::VRControllerAxis_t [5]"}]}
- ,{"struct": "vr::Compositor_OverlaySettings","fields": [
- { "fieldname": "size", "fieldtype": "uint32_t"},
- { "fieldname": "curved", "fieldtype": "_Bool"},
- { "fieldname": "antialias", "fieldtype": "_Bool"},
- { "fieldname": "scale", "fieldtype": "float"},
- { "fieldname": "distance", "fieldtype": "float"},
- { "fieldname": "alpha", "fieldtype": "float"},
- { "fieldname": "uOffset", "fieldtype": "float"},
- { "fieldname": "vOffset", "fieldtype": "float"},
- { "fieldname": "uScale", "fieldtype": "float"},
- { "fieldname": "vScale", "fieldtype": "float"},
- { "fieldname": "gridDivs", "fieldtype": "float"},
- { "fieldname": "gridWidth", "fieldtype": "float"},
- { "fieldname": "gridScale", "fieldtype": "float"},
- { "fieldname": "transform", "fieldtype": "struct vr::HmdMatrix44_t"}]}
- ,{"struct": "vr::CameraVideoStreamFrameHeader_t","fields": [
- { "fieldname": "eFrameType", "fieldtype": "enum vr::EVRTrackedCameraFrameType"},
- { "fieldname": "nWidth", "fieldtype": "uint32_t"},
- { "fieldname": "nHeight", "fieldtype": "uint32_t"},
- { "fieldname": "nBytesPerPixel", "fieldtype": "uint32_t"},
- { "fieldname": "nFrameSequence", "fieldtype": "uint32_t"},
- { "fieldname": "standingTrackedDevicePose", "fieldtype": "struct vr::TrackedDevicePose_t"}]}
- ,{"struct": "vr::AppOverrideKeys_t","fields": [
- { "fieldname": "pchKey", "fieldtype": "const char *"},
- { "fieldname": "pchValue", "fieldtype": "const char *"}]}
- ,{"struct": "vr::Compositor_FrameTiming","fields": [
- { "fieldname": "m_nSize", "fieldtype": "uint32_t"},
- { "fieldname": "m_nFrameIndex", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumFramePresents", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumDroppedFrames", "fieldtype": "uint32_t"},
- { "fieldname": "m_flSystemTimeInSeconds", "fieldtype": "double"},
- { "fieldname": "m_flSceneRenderGpuMs", "fieldtype": "float"},
- { "fieldname": "m_flTotalRenderGpuMs", "fieldtype": "float"},
- { "fieldname": "m_flCompositorRenderGpuMs", "fieldtype": "float"},
- { "fieldname": "m_flCompositorRenderCpuMs", "fieldtype": "float"},
- { "fieldname": "m_flCompositorIdleCpuMs", "fieldtype": "float"},
- { "fieldname": "m_flClientFrameIntervalMs", "fieldtype": "float"},
- { "fieldname": "m_flPresentCallCpuMs", "fieldtype": "float"},
- { "fieldname": "m_flWaitForPresentCpuMs", "fieldtype": "float"},
- { "fieldname": "m_flSubmitFrameMs", "fieldtype": "float"},
- { "fieldname": "m_flWaitGetPosesCalledMs", "fieldtype": "float"},
- { "fieldname": "m_flNewPosesReadyMs", "fieldtype": "float"},
- { "fieldname": "m_flNewFrameReadyMs", "fieldtype": "float"},
- { "fieldname": "m_flCompositorUpdateStartMs", "fieldtype": "float"},
- { "fieldname": "m_flCompositorUpdateEndMs", "fieldtype": "float"},
- { "fieldname": "m_flCompositorRenderStartMs", "fieldtype": "float"},
- { "fieldname": "m_HmdPose", "fieldtype": "vr::TrackedDevicePose_t"},
- { "fieldname": "m_nFidelityLevel", "fieldtype": "int32_t"},
- { "fieldname": "m_nReprojectionFlags", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::Compositor_CumulativeStats","fields": [
- { "fieldname": "m_nPid", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumFramePresents", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumDroppedFrames", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumReprojectedFrames", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumFramePresentsOnStartup", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumDroppedFramesOnStartup", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumReprojectedFramesOnStartup", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumLoading", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumFramePresentsLoading", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumDroppedFramesLoading", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumReprojectedFramesLoading", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumTimedOut", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumFramePresentsTimedOut", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumDroppedFramesTimedOut", "fieldtype": "uint32_t"},
- { "fieldname": "m_nNumReprojectedFramesTimedOut", "fieldtype": "uint32_t"}]}
- ,{"struct": "vr::VROverlayIntersectionParams_t","fields": [
- { "fieldname": "vSource", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "vDirection", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "eOrigin", "fieldtype": "enum vr::ETrackingUniverseOrigin"}]}
- ,{"struct": "vr::VROverlayIntersectionResults_t","fields": [
- { "fieldname": "vPoint", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "vNormal", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "vUVs", "fieldtype": "struct vr::HmdVector2_t"},
- { "fieldname": "fDistance", "fieldtype": "float"}]}
- ,{"struct": "vr::RenderModel_ComponentState_t","fields": [
- { "fieldname": "mTrackingToComponentRenderModel", "fieldtype": "struct vr::HmdMatrix34_t"},
- { "fieldname": "mTrackingToComponentLocal", "fieldtype": "struct vr::HmdMatrix34_t"},
- { "fieldname": "uProperties", "fieldtype": "VRComponentProperties"}]}
- ,{"struct": "vr::RenderModel_Vertex_t","fields": [
- { "fieldname": "vPosition", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "vNormal", "fieldtype": "struct vr::HmdVector3_t"},
- { "fieldname": "rfTextureCoord", "fieldtype": "float [2]"}]}
- ,{"struct": "vr::RenderModel_TextureMap_t","fields": [
- { "fieldname": "unWidth", "fieldtype": "uint16_t"},
- { "fieldname": "unHeight", "fieldtype": "uint16_t"},
- { "fieldname": "rubTextureMapData", "fieldtype": "const uint8_t *"}]}
- ,{"struct": "vr::RenderModel_t","fields": [
- { "fieldname": "rVertexData", "fieldtype": "const struct vr::RenderModel_Vertex_t *"},
- { "fieldname": "unVertexCount", "fieldtype": "uint32_t"},
- { "fieldname": "rIndexData", "fieldtype": "const uint16_t *"},
- { "fieldname": "unTriangleCount", "fieldtype": "uint32_t"},
- { "fieldname": "diffuseTextureId", "fieldtype": "TextureID_t"}]}
- ,{"struct": "vr::RenderModel_ControllerMode_State_t","fields": [
- { "fieldname": "bScrollWheelVisible", "fieldtype": "_Bool"}]}
- ,{"struct": "vr::NotificationBitmap_t","fields": [
- { "fieldname": "m_pImageData", "fieldtype": "void *"},
- { "fieldname": "m_nWidth", "fieldtype": "int32_t"},
- { "fieldname": "m_nHeight", "fieldtype": "int32_t"},
- { "fieldname": "m_nBytesPerPixel", "fieldtype": "int32_t"}]}
- ,{"struct": "vr::COpenVRContext","fields": [
- { "fieldname": "m_pVRSystem", "fieldtype": "class vr::IVRSystem *"},
- { "fieldname": "m_pVRChaperone", "fieldtype": "class vr::IVRChaperone *"},
- { "fieldname": "m_pVRChaperoneSetup", "fieldtype": "class vr::IVRChaperoneSetup *"},
- { "fieldname": "m_pVRCompositor", "fieldtype": "class vr::IVRCompositor *"},
- { "fieldname": "m_pVROverlay", "fieldtype": "class vr::IVROverlay *"},
- { "fieldname": "m_pVRRenderModels", "fieldtype": "class vr::IVRRenderModels *"},
- { "fieldname": "m_pVRExtendedDisplay", "fieldtype": "class vr::IVRExtendedDisplay *"},
- { "fieldname": "m_pVRSettings", "fieldtype": "class vr::IVRSettings *"},
- { "fieldname": "m_pVRApplications", "fieldtype": "class vr::IVRApplications *"},
- { "fieldname": "m_pVRTrackedCamera", "fieldtype": "class vr::IVRTrackedCamera *"}]}
- ],
- "methods":[{
- "classname": "vr::IVRSystem",
- "methodname": "GetRecommendedRenderTargetSize",
- "returntype": "void",
- "params": [
- { "paramname": "pnWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "pnHeight" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetProjectionMatrix",
- "returntype": "struct vr::HmdMatrix44_t",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "fNearZ" ,"paramtype": "float"},
- { "paramname": "fFarZ" ,"paramtype": "float"},
- { "paramname": "eProjType" ,"paramtype": "vr::EGraphicsAPIConvention"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetProjectionRaw",
- "returntype": "void",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "pfLeft" ,"paramtype": "float *"},
- { "paramname": "pfRight" ,"paramtype": "float *"},
- { "paramname": "pfTop" ,"paramtype": "float *"},
- { "paramname": "pfBottom" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "ComputeDistortion",
- "returntype": "struct vr::DistortionCoordinates_t",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "fU" ,"paramtype": "float"},
- { "paramname": "fV" ,"paramtype": "float"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetEyeToHeadTransform",
- "returntype": "struct vr::HmdMatrix34_t",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetTimeSinceLastVsync",
- "returntype": "bool",
- "params": [
- { "paramname": "pfSecondsSinceLastVsync" ,"paramtype": "float *"},
- { "paramname": "pulFrameCounter" ,"paramtype": "uint64_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetD3D9AdapterIndex",
- "returntype": "int32_t"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetDXGIOutputInfo",
- "returntype": "void",
- "params": [
- { "paramname": "pnAdapterIndex" ,"paramtype": "int32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "IsDisplayOnDesktop",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "SetDisplayVisibility",
- "returntype": "bool",
- "params": [
- { "paramname": "bIsVisibleOnDesktop" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetDeviceToAbsoluteTrackingPose",
- "returntype": "void",
- "params": [
- { "paramname": "eOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"},
- { "paramname": "fPredictedSecondsToPhotonsFromNow" ,"paramtype": "float"},
- { "paramname": "pTrackedDevicePoseArray" ,"array_count": "unTrackedDevicePoseArrayCount" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "unTrackedDevicePoseArrayCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "ResetSeatedZeroPose",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetSeatedZeroPoseToStandingAbsoluteTrackingPose",
- "returntype": "struct vr::HmdMatrix34_t"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetRawZeroPoseToStandingAbsoluteTrackingPose",
- "returntype": "struct vr::HmdMatrix34_t"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetSortedTrackedDeviceIndicesOfClass",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "eTrackedDeviceClass" ,"paramtype": "vr::ETrackedDeviceClass"},
- { "paramname": "punTrackedDeviceIndexArray" ,"array_count": "unTrackedDeviceIndexArrayCount" ,"paramtype": "vr::TrackedDeviceIndex_t *"},
- { "paramname": "unTrackedDeviceIndexArrayCount" ,"paramtype": "uint32_t"},
- { "paramname": "unRelativeToTrackedDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetTrackedDeviceActivityLevel",
- "returntype": "vr::EDeviceActivityLevel",
- "params": [
- { "paramname": "unDeviceId" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "ApplyTransform",
- "returntype": "void",
- "params": [
- { "paramname": "pOutputPose" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "pTrackedDevicePose" ,"paramtype": "const struct vr::TrackedDevicePose_t *"},
- { "paramname": "pTransform" ,"paramtype": "const struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetTrackedDeviceIndexForControllerRole",
- "returntype": "vr::TrackedDeviceIndex_t",
- "params": [
- { "paramname": "unDeviceType" ,"paramtype": "vr::ETrackedControllerRole"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetControllerRoleForTrackedDeviceIndex",
- "returntype": "vr::ETrackedControllerRole",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetTrackedDeviceClass",
- "returntype": "vr::ETrackedDeviceClass",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "IsTrackedDeviceConnected",
- "returntype": "bool",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetBoolTrackedDeviceProperty",
- "returntype": "bool",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "prop" ,"paramtype": "vr::ETrackedDeviceProperty"},
- { "paramname": "pError" ,"paramtype": "vr::ETrackedPropertyError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetFloatTrackedDeviceProperty",
- "returntype": "float",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "prop" ,"paramtype": "vr::ETrackedDeviceProperty"},
- { "paramname": "pError" ,"paramtype": "vr::ETrackedPropertyError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetInt32TrackedDeviceProperty",
- "returntype": "int32_t",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "prop" ,"paramtype": "vr::ETrackedDeviceProperty"},
- { "paramname": "pError" ,"paramtype": "vr::ETrackedPropertyError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetUint64TrackedDeviceProperty",
- "returntype": "uint64_t",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "prop" ,"paramtype": "vr::ETrackedDeviceProperty"},
- { "paramname": "pError" ,"paramtype": "vr::ETrackedPropertyError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetMatrix34TrackedDeviceProperty",
- "returntype": "struct vr::HmdMatrix34_t",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "prop" ,"paramtype": "vr::ETrackedDeviceProperty"},
- { "paramname": "pError" ,"paramtype": "vr::ETrackedPropertyError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetStringTrackedDeviceProperty",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "prop" ,"paramtype": "vr::ETrackedDeviceProperty"},
- { "paramname": "pchValue" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unBufferSize" ,"paramtype": "uint32_t"},
- { "paramname": "pError" ,"paramtype": "vr::ETrackedPropertyError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetPropErrorNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "error" ,"paramtype": "vr::ETrackedPropertyError"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "PollNextEvent",
- "returntype": "bool",
- "params": [
- { "paramname": "pEvent" ,"paramtype": "struct vr::VREvent_t *"},
- { "paramname": "uncbVREvent" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "PollNextEventWithPose",
- "returntype": "bool",
- "params": [
- { "paramname": "eOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"},
- { "paramname": "pEvent" ,"paramtype": "struct vr::VREvent_t *"},
- { "paramname": "uncbVREvent" ,"paramtype": "uint32_t"},
- { "paramname": "pTrackedDevicePose" ,"paramtype": "vr::TrackedDevicePose_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetEventTypeNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "eType" ,"paramtype": "vr::EVREventType"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetHiddenAreaMesh",
- "returntype": "struct vr::HiddenAreaMesh_t",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetControllerState",
- "returntype": "bool",
- "params": [
- { "paramname": "unControllerDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pControllerState" ,"paramtype": "vr::VRControllerState_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetControllerStateWithPose",
- "returntype": "bool",
- "params": [
- { "paramname": "eOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"},
- { "paramname": "unControllerDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pControllerState" ,"paramtype": "vr::VRControllerState_t *"},
- { "paramname": "pTrackedDevicePose" ,"paramtype": "struct vr::TrackedDevicePose_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "TriggerHapticPulse",
- "returntype": "void",
- "params": [
- { "paramname": "unControllerDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "unAxisId" ,"paramtype": "uint32_t"},
- { "paramname": "usDurationMicroSec" ,"paramtype": "unsigned short"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetButtonIdNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "eButtonId" ,"paramtype": "vr::EVRButtonId"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "GetControllerAxisTypeNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "eAxisType" ,"paramtype": "vr::EVRControllerAxisType"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "CaptureInputFocus",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "ReleaseInputFocus",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "IsInputFocusCapturedByAnotherProcess",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "DriverDebugRequest",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pchRequest" ,"paramtype": "const char *"},
- { "paramname": "pchResponseBuffer" ,"paramtype": "char *"},
- { "paramname": "unResponseBufferSize" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "PerformFirmwareUpdate",
- "returntype": "vr::EVRFirmwareError",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "AcknowledgeQuit_Exiting",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRSystem",
- "methodname": "AcknowledgeQuit_UserPrompt",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRExtendedDisplay",
- "methodname": "GetWindowBounds",
- "returntype": "void",
- "params": [
- { "paramname": "pnX" ,"paramtype": "int32_t *"},
- { "paramname": "pnY" ,"paramtype": "int32_t *"},
- { "paramname": "pnWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "pnHeight" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRExtendedDisplay",
- "methodname": "GetEyeOutputViewport",
- "returntype": "void",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "pnX" ,"paramtype": "uint32_t *"},
- { "paramname": "pnY" ,"paramtype": "uint32_t *"},
- { "paramname": "pnWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "pnHeight" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRExtendedDisplay",
- "methodname": "GetDXGIOutputInfo",
- "returntype": "void",
- "params": [
- { "paramname": "pnAdapterIndex" ,"paramtype": "int32_t *"},
- { "paramname": "pnAdapterOutputIndex" ,"paramtype": "int32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "GetCameraErrorNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "eCameraError" ,"paramtype": "vr::EVRTrackedCameraError"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "HasCamera",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "nDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pHasCamera" ,"paramtype": "bool *"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "GetCameraFrameSize",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "nDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "eFrameType" ,"paramtype": "vr::EVRTrackedCameraFrameType"},
- { "paramname": "pnWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "pnHeight" ,"paramtype": "uint32_t *"},
- { "paramname": "pnFrameBufferSize" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "GetCameraIntrinisics",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "nDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "eFrameType" ,"paramtype": "vr::EVRTrackedCameraFrameType"},
- { "paramname": "pFocalLength" ,"paramtype": "vr::HmdVector2_t *"},
- { "paramname": "pCenter" ,"paramtype": "vr::HmdVector2_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "GetCameraProjection",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "nDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "eFrameType" ,"paramtype": "vr::EVRTrackedCameraFrameType"},
- { "paramname": "flZNear" ,"paramtype": "float"},
- { "paramname": "flZFar" ,"paramtype": "float"},
- { "paramname": "pProjection" ,"paramtype": "vr::HmdMatrix44_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "AcquireVideoStreamingService",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "nDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pHandle" ,"paramtype": "vr::TrackedCameraHandle_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "ReleaseVideoStreamingService",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "hTrackedCamera" ,"paramtype": "vr::TrackedCameraHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVRTrackedCamera",
- "methodname": "GetVideoStreamFrameBuffer",
- "returntype": "vr::EVRTrackedCameraError",
- "params": [
- { "paramname": "hTrackedCamera" ,"paramtype": "vr::TrackedCameraHandle_t"},
- { "paramname": "eFrameType" ,"paramtype": "vr::EVRTrackedCameraFrameType"},
- { "paramname": "pFrameBuffer" ,"paramtype": "void *"},
- { "paramname": "nFrameBufferSize" ,"paramtype": "uint32_t"},
- { "paramname": "pFrameHeader" ,"paramtype": "vr::CameraVideoStreamFrameHeader_t *"},
- { "paramname": "nFrameHeaderSize" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "AddApplicationManifest",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchApplicationManifestFullPath" ,"paramtype": "const char *"},
- { "paramname": "bTemporary" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "RemoveApplicationManifest",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchApplicationManifestFullPath" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "IsApplicationInstalled",
- "returntype": "bool",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationCount",
- "returntype": "uint32_t"
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationKeyByIndex",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "unApplicationIndex" ,"paramtype": "uint32_t"},
- { "paramname": "pchAppKeyBuffer" ,"paramtype": "char *"},
- { "paramname": "unAppKeyBufferLen" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationKeyByProcessId",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "unProcessId" ,"paramtype": "uint32_t"},
- { "paramname": "pchAppKeyBuffer" ,"paramtype": "char *"},
- { "paramname": "unAppKeyBufferLen" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "LaunchApplication",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "LaunchTemplateApplication",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchTemplateAppKey" ,"paramtype": "const char *"},
- { "paramname": "pchNewAppKey" ,"paramtype": "const char *"},
- { "paramname": "pKeys" ,"array_count": "unKeys" ,"paramtype": "const struct vr::AppOverrideKeys_t *"},
- { "paramname": "unKeys" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "LaunchDashboardOverlay",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "CancelApplicationLaunch",
- "returntype": "bool",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "IdentifyApplication",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "unProcessId" ,"paramtype": "uint32_t"},
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationProcessId",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationsErrorNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "error" ,"paramtype": "vr::EVRApplicationError"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationPropertyString",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"},
- { "paramname": "eProperty" ,"paramtype": "vr::EVRApplicationProperty"},
- { "paramname": "pchPropertyValueBuffer" ,"paramtype": "char *"},
- { "paramname": "unPropertyValueBufferLen" ,"paramtype": "uint32_t"},
- { "paramname": "peError" ,"paramtype": "vr::EVRApplicationError *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationPropertyBool",
- "returntype": "bool",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"},
- { "paramname": "eProperty" ,"paramtype": "vr::EVRApplicationProperty"},
- { "paramname": "peError" ,"paramtype": "vr::EVRApplicationError *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationPropertyUint64",
- "returntype": "uint64_t",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"},
- { "paramname": "eProperty" ,"paramtype": "vr::EVRApplicationProperty"},
- { "paramname": "peError" ,"paramtype": "vr::EVRApplicationError *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "SetApplicationAutoLaunch",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"},
- { "paramname": "bAutoLaunch" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationAutoLaunch",
- "returntype": "bool",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetStartingApplication",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchAppKeyBuffer" ,"paramtype": "char *"},
- { "paramname": "unAppKeyBufferLen" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetTransitionState",
- "returntype": "vr::EVRApplicationTransitionState"
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "PerformApplicationPrelaunchCheck",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchAppKey" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "GetApplicationsTransitionStateNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "state" ,"paramtype": "vr::EVRApplicationTransitionState"}
- ]
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "IsQuitUserPromptRequested",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRApplications",
- "methodname": "LaunchInternalProcess",
- "returntype": "vr::EVRApplicationError",
- "params": [
- { "paramname": "pchBinaryPath" ,"paramtype": "const char *"},
- { "paramname": "pchArguments" ,"paramtype": "const char *"},
- { "paramname": "pchWorkingDirectory" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "GetCalibrationState",
- "returntype": "vr::ChaperoneCalibrationState"
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "GetPlayAreaSize",
- "returntype": "bool",
- "params": [
- { "paramname": "pSizeX" ,"paramtype": "float *"},
- { "paramname": "pSizeZ" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "GetPlayAreaRect",
- "returntype": "bool",
- "params": [
- { "paramname": "rect" ,"paramtype": "struct vr::HmdQuad_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "ReloadInfo",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "SetSceneColor",
- "returntype": "void",
- "params": [
- { "paramname": "color" ,"paramtype": "struct vr::HmdColor_t"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "GetBoundsColor",
- "returntype": "void",
- "params": [
- { "paramname": "pOutputColorArray" ,"paramtype": "struct vr::HmdColor_t *"},
- { "paramname": "nNumOutputColors" ,"paramtype": "int"},
- { "paramname": "flCollisionBoundsFadeDistance" ,"paramtype": "float"},
- { "paramname": "pOutputCameraColor" ,"paramtype": "struct vr::HmdColor_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "AreBoundsVisible",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRChaperone",
- "methodname": "ForceBoundsVisible",
- "returntype": "void",
- "params": [
- { "paramname": "bForce" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "CommitWorkingCopy",
- "returntype": "bool",
- "params": [
- { "paramname": "configFile" ,"paramtype": "vr::EChaperoneConfigFile"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "RevertWorkingCopy",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetWorkingPlayAreaSize",
- "returntype": "bool",
- "params": [
- { "paramname": "pSizeX" ,"paramtype": "float *"},
- { "paramname": "pSizeZ" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetWorkingPlayAreaRect",
- "returntype": "bool",
- "params": [
- { "paramname": "rect" ,"paramtype": "struct vr::HmdQuad_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetWorkingCollisionBoundsInfo",
- "returntype": "bool",
- "params": [
- { "paramname": "pQuadsBuffer" ,"out_array_count": "punQuadsCount" ,"paramtype": "struct vr::HmdQuad_t *"},
- { "paramname": "punQuadsCount" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetLiveCollisionBoundsInfo",
- "returntype": "bool",
- "params": [
- { "paramname": "pQuadsBuffer" ,"out_array_count": "punQuadsCount" ,"paramtype": "struct vr::HmdQuad_t *"},
- { "paramname": "punQuadsCount" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetWorkingSeatedZeroPoseToRawTrackingPose",
- "returntype": "bool",
- "params": [
- { "paramname": "pmatSeatedZeroPoseToRawTrackingPose" ,"paramtype": "struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetWorkingStandingZeroPoseToRawTrackingPose",
- "returntype": "bool",
- "params": [
- { "paramname": "pmatStandingZeroPoseToRawTrackingPose" ,"paramtype": "struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "SetWorkingPlayAreaSize",
- "returntype": "void",
- "params": [
- { "paramname": "sizeX" ,"paramtype": "float"},
- { "paramname": "sizeZ" ,"paramtype": "float"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "SetWorkingCollisionBoundsInfo",
- "returntype": "void",
- "params": [
- { "paramname": "pQuadsBuffer" ,"array_count": "unQuadsCount" ,"paramtype": "struct vr::HmdQuad_t *"},
- { "paramname": "unQuadsCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "SetWorkingSeatedZeroPoseToRawTrackingPose",
- "returntype": "void",
- "params": [
- { "paramname": "pMatSeatedZeroPoseToRawTrackingPose" ,"paramtype": "const struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "SetWorkingStandingZeroPoseToRawTrackingPose",
- "returntype": "void",
- "params": [
- { "paramname": "pMatStandingZeroPoseToRawTrackingPose" ,"paramtype": "const struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "ReloadFromDisk",
- "returntype": "void",
- "params": [
- { "paramname": "configFile" ,"paramtype": "vr::EChaperoneConfigFile"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetLiveSeatedZeroPoseToRawTrackingPose",
- "returntype": "bool",
- "params": [
- { "paramname": "pmatSeatedZeroPoseToRawTrackingPose" ,"paramtype": "struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "SetWorkingCollisionBoundsTagsInfo",
- "returntype": "void",
- "params": [
- { "paramname": "pTagsBuffer" ,"array_count": "unTagCount" ,"paramtype": "uint8_t *"},
- { "paramname": "unTagCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetLiveCollisionBoundsTagsInfo",
- "returntype": "bool",
- "params": [
- { "paramname": "pTagsBuffer" ,"out_array_count": "punTagCount" ,"paramtype": "uint8_t *"},
- { "paramname": "punTagCount" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "SetWorkingPhysicalBoundsInfo",
- "returntype": "bool",
- "params": [
- { "paramname": "pQuadsBuffer" ,"array_count": "unQuadsCount" ,"paramtype": "struct vr::HmdQuad_t *"},
- { "paramname": "unQuadsCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "GetLivePhysicalBoundsInfo",
- "returntype": "bool",
- "params": [
- { "paramname": "pQuadsBuffer" ,"out_array_count": "punQuadsCount" ,"paramtype": "struct vr::HmdQuad_t *"},
- { "paramname": "punQuadsCount" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "ExportLiveToBuffer",
- "returntype": "bool",
- "params": [
- { "paramname": "pBuffer" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "pnBufferLength" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRChaperoneSetup",
- "methodname": "ImportFromBufferToWorking",
- "returntype": "bool",
- "params": [
- { "paramname": "pBuffer" ,"paramtype": "const char *"},
- { "paramname": "nImportFlags" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "SetTrackingSpace",
- "returntype": "void",
- "params": [
- { "paramname": "eOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetTrackingSpace",
- "returntype": "vr::ETrackingUniverseOrigin"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "WaitGetPoses",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "pRenderPoseArray" ,"array_count": "unRenderPoseArrayCount" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "unRenderPoseArrayCount" ,"paramtype": "uint32_t"},
- { "paramname": "pGamePoseArray" ,"array_count": "unGamePoseArrayCount" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "unGamePoseArrayCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetLastPoses",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "pRenderPoseArray" ,"array_count": "unRenderPoseArrayCount" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "unRenderPoseArrayCount" ,"paramtype": "uint32_t"},
- { "paramname": "pGamePoseArray" ,"array_count": "unGamePoseArrayCount" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "unGamePoseArrayCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetLastPoseForTrackedDeviceIndex",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pOutputPose" ,"paramtype": "struct vr::TrackedDevicePose_t *"},
- { "paramname": "pOutputGamePose" ,"paramtype": "struct vr::TrackedDevicePose_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "Submit",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "pTexture" ,"paramtype": "const struct vr::Texture_t *"},
- { "paramname": "pBounds" ,"paramtype": "const struct vr::VRTextureBounds_t *"},
- { "paramname": "nSubmitFlags" ,"paramtype": "vr::EVRSubmitFlags"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ClearLastSubmittedFrame",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "PostPresentHandoff",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetFrameTiming",
- "returntype": "bool",
- "params": [
- { "paramname": "pTiming" ,"paramtype": "struct vr::Compositor_FrameTiming *"},
- { "paramname": "unFramesAgo" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetFrameTimeRemaining",
- "returntype": "float"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetCumulativeStats",
- "returntype": "void",
- "params": [
- { "paramname": "pStats" ,"paramtype": "struct vr::Compositor_CumulativeStats *"},
- { "paramname": "nStatsSizeInBytes" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "FadeToColor",
- "returntype": "void",
- "params": [
- { "paramname": "fSeconds" ,"paramtype": "float"},
- { "paramname": "fRed" ,"paramtype": "float"},
- { "paramname": "fGreen" ,"paramtype": "float"},
- { "paramname": "fBlue" ,"paramtype": "float"},
- { "paramname": "fAlpha" ,"paramtype": "float"},
- { "paramname": "bBackground" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "FadeGrid",
- "returntype": "void",
- "params": [
- { "paramname": "fSeconds" ,"paramtype": "float"},
- { "paramname": "bFadeIn" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "SetSkyboxOverride",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "pTextures" ,"array_count": "unTextureCount" ,"paramtype": "const struct vr::Texture_t *"},
- { "paramname": "unTextureCount" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ClearSkyboxOverride",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "CompositorBringToFront",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "CompositorGoToBack",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "CompositorQuit",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "IsFullscreen",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetCurrentSceneFocusProcess",
- "returntype": "uint32_t"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetLastFrameRenderer",
- "returntype": "uint32_t"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "CanRenderScene",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ShowMirrorWindow",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "HideMirrorWindow",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "IsMirrorWindowVisible",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "CompositorDumpImages",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ShouldAppRenderWithLowResources",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ForceInterleavedReprojectionOn",
- "returntype": "void",
- "params": [
- { "paramname": "bOverride" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ForceReconnectProcess",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "SuspendRendering",
- "returntype": "void",
- "params": [
- { "paramname": "bSuspend" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "RequestScreenshot",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "type" ,"paramtype": "vr::EVRScreenshotType"},
- { "paramname": "pchDestinationFileName" ,"paramtype": "const char *"},
- { "paramname": "pchVRDestinationFileName" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetCurrentScreenshotType",
- "returntype": "vr::EVRScreenshotType"
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetMirrorTextureD3D11",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "pD3D11DeviceOrResource" ,"paramtype": "void *"},
- { "paramname": "ppD3D11ShaderResourceView" ,"paramtype": "void **"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "GetMirrorTextureGL",
- "returntype": "vr::EVRCompositorError",
- "params": [
- { "paramname": "eEye" ,"paramtype": "vr::EVREye"},
- { "paramname": "pglTextureId" ,"paramtype": "vr::glUInt_t *"},
- { "paramname": "pglSharedTextureHandle" ,"paramtype": "vr::glSharedTextureHandle_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "ReleaseSharedGLTexture",
- "returntype": "bool",
- "params": [
- { "paramname": "glTextureId" ,"paramtype": "vr::glUInt_t"},
- { "paramname": "glSharedTextureHandle" ,"paramtype": "vr::glSharedTextureHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "LockGLSharedTextureForAccess",
- "returntype": "void",
- "params": [
- { "paramname": "glSharedTextureHandle" ,"paramtype": "vr::glSharedTextureHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVRCompositor",
- "methodname": "UnlockGLSharedTextureForAccess",
- "returntype": "void",
- "params": [
- { "paramname": "glSharedTextureHandle" ,"paramtype": "vr::glSharedTextureHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "FindOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "pchOverlayKey" ,"paramtype": "const char *"},
- { "paramname": "pOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "CreateOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "pchOverlayKey" ,"paramtype": "const char *"},
- { "paramname": "pchOverlayFriendlyName" ,"paramtype": "const char *"},
- { "paramname": "pOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "DestroyOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetHighQualityOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetHighQualityOverlay",
- "returntype": "vr::VROverlayHandle_t"
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayKey",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pchValue" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unBufferSize" ,"paramtype": "uint32_t"},
- { "paramname": "pError" ,"paramtype": "vr::EVROverlayError *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayName",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pchValue" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unBufferSize" ,"paramtype": "uint32_t"},
- { "paramname": "pError" ,"paramtype": "vr::EVROverlayError *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayImageData",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pvBuffer" ,"paramtype": "void *"},
- { "paramname": "unBufferSize" ,"paramtype": "uint32_t"},
- { "paramname": "punWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "punHeight" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayErrorNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "error" ,"paramtype": "vr::EVROverlayError"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayRenderingPid",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "unPID" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayRenderingPid",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayFlag",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eOverlayFlag" ,"paramtype": "vr::VROverlayFlags"},
- { "paramname": "bEnabled" ,"paramtype": "bool"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayFlag",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eOverlayFlag" ,"paramtype": "vr::VROverlayFlags"},
- { "paramname": "pbEnabled" ,"paramtype": "bool *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayColor",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "fRed" ,"paramtype": "float"},
- { "paramname": "fGreen" ,"paramtype": "float"},
- { "paramname": "fBlue" ,"paramtype": "float"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayColor",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pfRed" ,"paramtype": "float *"},
- { "paramname": "pfGreen" ,"paramtype": "float *"},
- { "paramname": "pfBlue" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayAlpha",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "fAlpha" ,"paramtype": "float"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayAlpha",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pfAlpha" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayWidthInMeters",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "fWidthInMeters" ,"paramtype": "float"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayWidthInMeters",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pfWidthInMeters" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayAutoCurveDistanceRangeInMeters",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "fMinDistanceInMeters" ,"paramtype": "float"},
- { "paramname": "fMaxDistanceInMeters" ,"paramtype": "float"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayAutoCurveDistanceRangeInMeters",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pfMinDistanceInMeters" ,"paramtype": "float *"},
- { "paramname": "pfMaxDistanceInMeters" ,"paramtype": "float *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayTextureColorSpace",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eTextureColorSpace" ,"paramtype": "vr::EColorSpace"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTextureColorSpace",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "peTextureColorSpace" ,"paramtype": "vr::EColorSpace *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayTextureBounds",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pOverlayTextureBounds" ,"paramtype": "const struct vr::VRTextureBounds_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTextureBounds",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pOverlayTextureBounds" ,"paramtype": "struct vr::VRTextureBounds_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTransformType",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "peTransformType" ,"paramtype": "vr::VROverlayTransformType *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayTransformAbsolute",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eTrackingOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"},
- { "paramname": "pmatTrackingOriginToOverlayTransform" ,"paramtype": "const struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTransformAbsolute",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "peTrackingOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin *"},
- { "paramname": "pmatTrackingOriginToOverlayTransform" ,"paramtype": "struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayTransformTrackedDeviceRelative",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "unTrackedDevice" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pmatTrackedDeviceToOverlayTransform" ,"paramtype": "const struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTransformTrackedDeviceRelative",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "punTrackedDevice" ,"paramtype": "vr::TrackedDeviceIndex_t *"},
- { "paramname": "pmatTrackedDeviceToOverlayTransform" ,"paramtype": "struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayTransformTrackedDeviceComponent",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "unDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"},
- { "paramname": "pchComponentName" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTransformTrackedDeviceComponent",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "punDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t *"},
- { "paramname": "pchComponentName" ,"paramtype": "char *"},
- { "paramname": "unComponentNameSize" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ShowOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "HideOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "IsOverlayVisible",
- "returntype": "bool",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetTransformForOverlayCoordinates",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eTrackingOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"},
- { "paramname": "coordinatesInOverlay" ,"paramtype": "struct vr::HmdVector2_t"},
- { "paramname": "pmatTransform" ,"paramtype": "struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "PollNextOverlayEvent",
- "returntype": "bool",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pEvent" ,"paramtype": "struct vr::VREvent_t *"},
- { "paramname": "uncbVREvent" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayInputMethod",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "peInputMethod" ,"paramtype": "vr::VROverlayInputMethod *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayInputMethod",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eInputMethod" ,"paramtype": "vr::VROverlayInputMethod"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayMouseScale",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pvecMouseScale" ,"paramtype": "struct vr::HmdVector2_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayMouseScale",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pvecMouseScale" ,"paramtype": "const struct vr::HmdVector2_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ComputeOverlayIntersection",
- "returntype": "bool",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pParams" ,"paramtype": "const struct vr::VROverlayIntersectionParams_t *"},
- { "paramname": "pResults" ,"paramtype": "struct vr::VROverlayIntersectionResults_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "HandleControllerOverlayInteractionAsMouse",
- "returntype": "bool",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "unControllerDeviceIndex" ,"paramtype": "vr::TrackedDeviceIndex_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "IsHoverTargetOverlay",
- "returntype": "bool",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetGamepadFocusOverlay",
- "returntype": "vr::VROverlayHandle_t"
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetGamepadFocusOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulNewFocusOverlay" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayNeighbor",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "eDirection" ,"paramtype": "vr::EOverlayDirection"},
- { "paramname": "ulFrom" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "ulTo" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "MoveGamepadFocusToNeighbor",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "eDirection" ,"paramtype": "vr::EOverlayDirection"},
- { "paramname": "ulFrom" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayTexture",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pTexture" ,"paramtype": "const struct vr::Texture_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ClearOverlayTexture",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayRaw",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pvBuffer" ,"paramtype": "void *"},
- { "paramname": "unWidth" ,"paramtype": "uint32_t"},
- { "paramname": "unHeight" ,"paramtype": "uint32_t"},
- { "paramname": "unDepth" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetOverlayFromFile",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pchFilePath" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTexture",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pNativeTextureHandle" ,"paramtype": "void **"},
- { "paramname": "pNativeTextureRef" ,"paramtype": "void *"},
- { "paramname": "pWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "pHeight" ,"paramtype": "uint32_t *"},
- { "paramname": "pNativeFormat" ,"paramtype": "uint32_t *"},
- { "paramname": "pAPI" ,"paramtype": "vr::EGraphicsAPIConvention *"},
- { "paramname": "pColorSpace" ,"paramtype": "vr::EColorSpace *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ReleaseNativeOverlayHandle",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pNativeTextureHandle" ,"paramtype": "void *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetOverlayTextureSize",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "pWidth" ,"paramtype": "uint32_t *"},
- { "paramname": "pHeight" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "CreateDashboardOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "pchOverlayKey" ,"paramtype": "const char *"},
- { "paramname": "pchOverlayFriendlyName" ,"paramtype": "const char *"},
- { "paramname": "pMainHandle" ,"paramtype": "vr::VROverlayHandle_t *"},
- { "paramname": "pThumbnailHandle" ,"paramtype": "vr::VROverlayHandle_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "IsDashboardVisible",
- "returntype": "bool"
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "IsActiveDashboardOverlay",
- "returntype": "bool",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetDashboardOverlaySceneProcess",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "unProcessId" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetDashboardOverlaySceneProcess",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "punProcessId" ,"paramtype": "uint32_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ShowDashboard",
- "returntype": "void",
- "params": [
- { "paramname": "pchOverlayToShow" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetPrimaryDashboardDevice",
- "returntype": "vr::TrackedDeviceIndex_t"
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ShowKeyboard",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "eInputMode" ,"paramtype": "vr::EGamepadTextInputMode"},
- { "paramname": "eLineInputMode" ,"paramtype": "vr::EGamepadTextInputLineMode"},
- { "paramname": "pchDescription" ,"paramtype": "const char *"},
- { "paramname": "unCharMax" ,"paramtype": "uint32_t"},
- { "paramname": "pchExistingText" ,"paramtype": "const char *"},
- { "paramname": "bUseMinimalMode" ,"paramtype": "bool"},
- { "paramname": "uUserValue" ,"paramtype": "uint64_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "ShowKeyboardForOverlay",
- "returntype": "vr::EVROverlayError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "eInputMode" ,"paramtype": "vr::EGamepadTextInputMode"},
- { "paramname": "eLineInputMode" ,"paramtype": "vr::EGamepadTextInputLineMode"},
- { "paramname": "pchDescription" ,"paramtype": "const char *"},
- { "paramname": "unCharMax" ,"paramtype": "uint32_t"},
- { "paramname": "pchExistingText" ,"paramtype": "const char *"},
- { "paramname": "bUseMinimalMode" ,"paramtype": "bool"},
- { "paramname": "uUserValue" ,"paramtype": "uint64_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "GetKeyboardText",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchText" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "cchText" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "HideKeyboard",
- "returntype": "void"
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetKeyboardTransformAbsolute",
- "returntype": "void",
- "params": [
- { "paramname": "eTrackingOrigin" ,"paramtype": "vr::ETrackingUniverseOrigin"},
- { "paramname": "pmatTrackingOriginToKeyboardTransform" ,"paramtype": "const struct vr::HmdMatrix34_t *"}
- ]
- }
- ,{
- "classname": "vr::IVROverlay",
- "methodname": "SetKeyboardPositionForOverlay",
- "returntype": "void",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "avoidRect" ,"paramtype": "struct vr::HmdRect2_t"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "LoadRenderModel_Async",
- "returntype": "vr::EVRRenderModelError",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "ppRenderModel" ,"paramtype": "struct vr::RenderModel_t **"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "FreeRenderModel",
- "returntype": "void",
- "params": [
- { "paramname": "pRenderModel" ,"paramtype": "struct vr::RenderModel_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "LoadTexture_Async",
- "returntype": "vr::EVRRenderModelError",
- "params": [
- { "paramname": "textureId" ,"paramtype": "vr::TextureID_t"},
- { "paramname": "ppTexture" ,"paramtype": "struct vr::RenderModel_TextureMap_t **"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "FreeTexture",
- "returntype": "void",
- "params": [
- { "paramname": "pTexture" ,"paramtype": "struct vr::RenderModel_TextureMap_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "LoadTextureD3D11_Async",
- "returntype": "vr::EVRRenderModelError",
- "params": [
- { "paramname": "textureId" ,"paramtype": "vr::TextureID_t"},
- { "paramname": "pD3D11Device" ,"paramtype": "void *"},
- { "paramname": "ppD3D11Texture2D" ,"paramtype": "void **"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "LoadIntoTextureD3D11_Async",
- "returntype": "vr::EVRRenderModelError",
- "params": [
- { "paramname": "textureId" ,"paramtype": "vr::TextureID_t"},
- { "paramname": "pDstTexture" ,"paramtype": "void *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "FreeTextureD3D11",
- "returntype": "void",
- "params": [
- { "paramname": "pD3D11Texture2D" ,"paramtype": "void *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetRenderModelName",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "unRenderModelIndex" ,"paramtype": "uint32_t"},
- { "paramname": "pchRenderModelName" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unRenderModelNameLen" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetRenderModelCount",
- "returntype": "uint32_t"
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetComponentCount",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetComponentName",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "unComponentIndex" ,"paramtype": "uint32_t"},
- { "paramname": "pchComponentName" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unComponentNameLen" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetComponentButtonMask",
- "returntype": "uint64_t",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "pchComponentName" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetComponentRenderModelName",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "pchComponentName" ,"paramtype": "const char *"},
- { "paramname": "pchComponentRenderModelName" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unComponentRenderModelNameLen" ,"paramtype": "uint32_t"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetComponentState",
- "returntype": "bool",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "pchComponentName" ,"paramtype": "const char *"},
- { "paramname": "pControllerState" ,"paramtype": "const vr::VRControllerState_t *"},
- { "paramname": "pState" ,"paramtype": "const struct vr::RenderModel_ControllerMode_State_t *"},
- { "paramname": "pComponentState" ,"paramtype": "struct vr::RenderModel_ComponentState_t *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "RenderModelHasComponent",
- "returntype": "bool",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "pchComponentName" ,"paramtype": "const char *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetRenderModelThumbnailURL",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "pchThumbnailURL" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unThumbnailURLLen" ,"paramtype": "uint32_t"},
- { "paramname": "peError" ,"paramtype": "vr::EVRRenderModelError *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetRenderModelOriginalPath",
- "returntype": "uint32_t",
- "params": [
- { "paramname": "pchRenderModelName" ,"paramtype": "const char *"},
- { "paramname": "pchOriginalPath" ,"out_string": " " ,"paramtype": "char *"},
- { "paramname": "unOriginalPathLen" ,"paramtype": "uint32_t"},
- { "paramname": "peError" ,"paramtype": "vr::EVRRenderModelError *"}
- ]
- }
- ,{
- "classname": "vr::IVRRenderModels",
- "methodname": "GetRenderModelErrorNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "error" ,"paramtype": "vr::EVRRenderModelError"}
- ]
- }
- ,{
- "classname": "vr::IVRNotifications",
- "methodname": "CreateNotification",
- "returntype": "vr::EVRNotificationError",
- "params": [
- { "paramname": "ulOverlayHandle" ,"paramtype": "vr::VROverlayHandle_t"},
- { "paramname": "ulUserValue" ,"paramtype": "uint64_t"},
- { "paramname": "type" ,"paramtype": "vr::EVRNotificationType"},
- { "paramname": "pchText" ,"paramtype": "const char *"},
- { "paramname": "style" ,"paramtype": "vr::EVRNotificationStyle"},
- { "paramname": "pImage" ,"paramtype": "const struct vr::NotificationBitmap_t *"},
- { "paramname": "pNotificationId" ,"paramtype": "vr::VRNotificationId *"}
- ]
- }
- ,{
- "classname": "vr::IVRNotifications",
- "methodname": "RemoveNotification",
- "returntype": "vr::EVRNotificationError",
- "params": [
- { "paramname": "notificationId" ,"paramtype": "vr::VRNotificationId"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "GetSettingsErrorNameFromEnum",
- "returntype": "const char *",
- "params": [
- { "paramname": "eError" ,"paramtype": "vr::EVRSettingsError"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "Sync",
- "returntype": "bool",
- "params": [
- { "paramname": "bForce" ,"paramtype": "bool"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "GetBool",
- "returntype": "bool",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "bDefaultValue" ,"paramtype": "bool"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "SetBool",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "bValue" ,"paramtype": "bool"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "GetInt32",
- "returntype": "int32_t",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "nDefaultValue" ,"paramtype": "int32_t"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "SetInt32",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "nValue" ,"paramtype": "int32_t"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "GetFloat",
- "returntype": "float",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "flDefaultValue" ,"paramtype": "float"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "SetFloat",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "flValue" ,"paramtype": "float"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "GetString",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "pchValue" ,"paramtype": "char *"},
- { "paramname": "unValueLen" ,"paramtype": "uint32_t"},
- { "paramname": "pchDefaultValue" ,"paramtype": "const char *"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "SetString",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "pchValue" ,"paramtype": "const char *"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "RemoveSection",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ,{
- "classname": "vr::IVRSettings",
- "methodname": "RemoveKeyInSection",
- "returntype": "void",
- "params": [
- { "paramname": "pchSection" ,"paramtype": "const char *"},
- { "paramname": "pchSettingsKey" ,"paramtype": "const char *"},
- { "paramname": "peError" ,"paramtype": "vr::EVRSettingsError *"}
- ]
- }
- ]
- }
|