Files
2026-02-21 16:45:37 +08:00

13 lines
237 B
C#

namespace Valve.VR
{
public enum EVRSubmitFlags
{
Submit_Default = 0,
Submit_LensDistortionAlreadyApplied = 1,
Submit_GlRenderBuffer = 2,
Submit_Reserved = 4,
Submit_TextureWithPose = 8,
Submit_TextureWithDepth = 0x10
}
}