mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Disable VR Overlay GPU Acceleration
This commit is contained in:
15
Dotnet/Overlay/VRCXVRInterface.cs
Normal file
15
Dotnet/Overlay/VRCXVRInterface.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace VRCX;
|
||||
|
||||
public abstract class VRCXVRInterface
|
||||
{
|
||||
public bool IsHmdAfk;
|
||||
|
||||
public abstract void Init();
|
||||
public abstract void Exit();
|
||||
public abstract void Refresh();
|
||||
public abstract void Restart();
|
||||
public abstract void SetActive(bool active, bool hmdOverlay, bool wristOverlay, bool menuButton, int overlayHand);
|
||||
public abstract string[][] GetDevices();
|
||||
public abstract void ExecuteVrFeedFunction(string function, string json);
|
||||
public abstract void ExecuteVrOverlayFunction(string function, string json);
|
||||
}
|
||||
Reference in New Issue
Block a user