All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DebugValues.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include <string>
6 
7 namespace Eegeo
8 {
9  namespace Debug
10  {
11  namespace DebugValues
12  {
13  extern int numPayloadsToLoad;
14  extern int numPayloadsFailedLoad;
15  extern int numPayloadsToBuild;
16 
17  extern int totalDrawCalls;
18  extern int totalPolysRendered;
19 
20  extern bool loggingAllocations;
21  extern bool cycleAppRequested;
22  extern bool debugLabelsOverridden;
23  extern bool debugLabelsEnabled;
24 
25  extern std::string debugLabelsEnvironmentFont;
26  extern std::string debugCoverageTreeManifestUrl;
27  extern std::string debugThemeManifestUrl;
28  }
29  }
30 }