mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-06-12 13:17:50 +02:00
vrclient: Move sources out of vrclient_x64 subfolder.
CW-Bug-Id: #22729
This commit is contained in:

committed by
Arkadiusz Hiler

parent
98a90a1458
commit
e9aeba85f2
75
vrclient_x64/cppIVRChaperone_IVRChaperone_004.cpp
Normal file
75
vrclient_x64/cppIVRChaperone_IVRChaperone_004.cpp
Normal file
@ -0,0 +1,75 @@
|
||||
/* This file is auto-generated, do not edit. */
|
||||
#include "unix_private.h"
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_GetCalibrationState( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_GetCalibrationState_params *params = (struct IVRChaperone_IVRChaperone_004_GetCalibrationState_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
params->_ret = (uint32_t)iface->GetCalibrationState( );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_GetPlayAreaSize( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_GetPlayAreaSize_params *params = (struct IVRChaperone_IVRChaperone_004_GetPlayAreaSize_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
params->_ret = (bool)iface->GetPlayAreaSize( params->pSizeX, params->pSizeZ );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_GetPlayAreaRect( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_GetPlayAreaRect_params *params = (struct IVRChaperone_IVRChaperone_004_GetPlayAreaRect_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
params->_ret = (bool)iface->GetPlayAreaRect( params->rect );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_ReloadInfo( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_ReloadInfo_params *params = (struct IVRChaperone_IVRChaperone_004_ReloadInfo_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
iface->ReloadInfo( );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_SetSceneColor( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_SetSceneColor_params *params = (struct IVRChaperone_IVRChaperone_004_SetSceneColor_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
iface->SetSceneColor( params->color );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_GetBoundsColor( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_GetBoundsColor_params *params = (struct IVRChaperone_IVRChaperone_004_GetBoundsColor_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
iface->GetBoundsColor( params->pOutputColorArray, params->nNumOutputColors, params->flCollisionBoundsFadeDistance, params->pOutputCameraColor );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_AreBoundsVisible( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_AreBoundsVisible_params *params = (struct IVRChaperone_IVRChaperone_004_AreBoundsVisible_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
params->_ret = (bool)iface->AreBoundsVisible( );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_ForceBoundsVisible( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_ForceBoundsVisible_params *params = (struct IVRChaperone_IVRChaperone_004_ForceBoundsVisible_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
iface->ForceBoundsVisible( params->bForce );
|
||||
return 0;
|
||||
}
|
||||
|
||||
NTSTATUS IVRChaperone_IVRChaperone_004_ResetZeroPose( void *args )
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_ResetZeroPose_params *params = (struct IVRChaperone_IVRChaperone_004_ResetZeroPose_params *)args;
|
||||
struct u_IVRChaperone_IVRChaperone_004 *iface = (struct u_IVRChaperone_IVRChaperone_004 *)params->linux_side;
|
||||
iface->ResetZeroPose( params->eTrackingUniverseOrigin );
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user