| 123456789101112131415 |
- using System;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace BansheeEngine
- {
- /// <summary>Flags that determine which portion of the viewport to clear.</summary>
- public enum ClearFlags
- {
- Empty = 0,
- Color = 1,
- Depth = 2,
- Stencil = 4
- }
- }
|