All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
StencilMapLayerMask.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 namespace Eegeo
6 {
7  namespace Rendering
8  {
9  namespace StencilMapLayerMask
10  {
11  enum Type
12  {
13  None = 0,
14  UserArea = 0x0f,
15  Trees = 0x10,
16  Buildings = 0x20,
17  Transport = 0x40,
18  Terrain = 0x80,
19  BuildingsAndTransport = Buildings | Transport,
20  BuildingsAndTerrain = Buildings | Terrain,
21  TransportAndTerrain = Transport | Terrain,
22  AllMapLayers = Trees | Buildings | Transport | Terrain
23  };
24  };
25  }
26 }