All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
RegularTexturePageLayout.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "ITexturePageLayout.h"
7 #include "Geometry.h"
8 
9 namespace Eegeo
10 {
11  namespace Rendering
12  {
17  {
18  public:
19  RegularTexturePageLayout(int numOfTilesInEachAxis);
20  Eegeo::Geometry::Bounds2D GetTileUVBounds(int tileIndex) const;
21 
22  private:
23  int m_numberOfTilesInEachAxis;
24  };
25  }
26 }