15 lines
219 B
C#
15 lines
219 B
C#
using System;
|
|
|
|
namespace XCEngine.Rendering.Universal
|
|
{
|
|
[Flags]
|
|
public enum ScriptableRenderPassInput
|
|
{
|
|
None = 0,
|
|
Depth = 1,
|
|
Normal = 2,
|
|
Color = 4,
|
|
Motion = 8
|
|
}
|
|
}
|