All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ShaderIdGenerator.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "IdTypes.h"
7 
8 namespace Eegeo
9 {
10  namespace Rendering
11  {
12  namespace Shaders
13  {
15  {
16  public:
18  : m_nextId(0)
19  {
20  }
21 
22  TShaderId GetNextId()
23  {
24  return m_nextId++;
25  }
26 
27  private:
28  TShaderId m_nextId;
29  };
30  }
31  }
32 }