All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DiffuseMeshFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "MeshFactory.h"
6 #include "Rendering.h"
7 #include "VertexLayoutPool.h"
8 #include "AllVertexTypes.h"
9 
10 namespace Eegeo
11 {
12  namespace Rendering
13  {
14  namespace MeshFactories
15  {
17  {
18  public:
19  DiffuseMeshFactory(Rendering::GlBufferPool& glBufferPool, const VertexLayouts::VertexLayoutPool& vertexLayoutPool)
20  : MeshFactory(glBufferPool, vertexLayoutPool.GetForDiffuseVertex(), sizeof(VertexTypes::DiffuseVertex))
21  {
22  }
23  };
24  }
25  }
26 }