19 lines
381 B
C#
19 lines
381 B
C#
namespace Valve.VR
|
|
{
|
|
public enum EVRCompositorError
|
|
{
|
|
None = 0,
|
|
RequestFailed = 1,
|
|
IncompatibleVersion = 100,
|
|
DoNotHaveFocus = 101,
|
|
InvalidTexture = 102,
|
|
IsNotSceneApplication = 103,
|
|
TextureIsOnWrongDevice = 104,
|
|
TextureUsesUnsupportedFormat = 105,
|
|
SharedTexturesNotSupported = 106,
|
|
IndexOutOfRange = 107,
|
|
AlreadySubmitted = 108,
|
|
InvalidBounds = 109
|
|
}
|
|
}
|