Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
UIProfilerKeys.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using SiliconStudio.Core.Diagnostics;
4 
5 namespace SiliconStudio.Paradox.UI
6 {
7  /// <summary>
8  /// Various <see cref="ProfilingKey"/> used to measure performance across some part of the UI system.
9  /// </summary>
10  public static class UIProfilerKeys
11  {
12  public static readonly ProfilingKey UI = new ProfilingKey("UI");
13 
14  public static readonly ProfilingKey TouchEventsUpdate = new ProfilingKey(UI, "TouchEvents", ProfilingKeyFlags.Log);
15  }
16 }
A key to identify a specific profile.
Definition: ProfilingKey.cs:11
Various ProfilingKey used to measure performance across some part of the UI system.