mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
49 lines
990 B
C#
49 lines
990 B
C#
namespace Microsoft.Iris.Support;
|
|
|
|
// Mirrors Microsoft.Iris.Render.DebugCategory (UIX.RenderApi/Microsoft/Iris/Render/DebugCategory.cs)
|
|
// field-for-field: ordinal values are part of the wire contract with the already-shipped
|
|
// managed callers (DebugGetCategoryLevel/DebugSetCategoryLevel pass this by value), so
|
|
// the order here must match exactly, not just the names.
|
|
public enum DebugCategory
|
|
{
|
|
Animation,
|
|
Critical,
|
|
Deprecated,
|
|
Dispatcher,
|
|
Dump,
|
|
Dx9Wrapper,
|
|
DynamicSurface,
|
|
Failure,
|
|
FormWindow,
|
|
GraphicsCache,
|
|
IFC,
|
|
ObjectCache,
|
|
Performance,
|
|
Profile,
|
|
Queues,
|
|
Render,
|
|
Sounds,
|
|
Surface,
|
|
SurfacePool,
|
|
SurfaceRestoration,
|
|
Timeouts,
|
|
Transport,
|
|
WindowState,
|
|
Effect,
|
|
HTTP,
|
|
ExternalCount,
|
|
Protocol,
|
|
RenderHost,
|
|
DumpException,
|
|
Focus,
|
|
Input,
|
|
TreeDisposal,
|
|
VisualSizePos,
|
|
Visual,
|
|
Painting,
|
|
RenderWindow,
|
|
ImageLoad,
|
|
ImageCache,
|
|
TotalCount,
|
|
}
|