14 lines
189 B
C#
14 lines
189 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace XCEngine
|
||
|
|
{
|
||
|
|
[Flags]
|
||
|
|
public enum RenderClearFlags
|
||
|
|
{
|
||
|
|
None = 0,
|
||
|
|
Color = 1 << 0,
|
||
|
|
Depth = 1 << 1,
|
||
|
|
All = Color | Depth
|
||
|
|
}
|
||
|
|
}
|