13 lines
237 B
C#
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
|
|
}
|
|
}
|