All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DebugRenderingModuleConfiguration.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace Modules
12  {
13  namespace Core
14  {
16  {
18  : InitialLineBufferSize(0)
19  , InitialGeomVertexBufferSize(0)
20  , InitialGeomIndexBufferSize(0)
21  , InitialGlyphBufferSize(0)
22  , LineWidth(1.f)
23  {};
24 
25  std::string DebugFontFilename;
26 
27  int InitialLineBufferSize;
28  int InitialGeomVertexBufferSize;
29  int InitialGeomIndexBufferSize;
30  int InitialGlyphBufferSize;
31  float LineWidth;
32  };
33  }
34  }
35 }