All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
FontMaterialSetFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IFontMaterialSetFactory.h"
6 #include "Types.h"
7 #include "Fonts.h"
8 
9 
10 
11 namespace Eegeo
12 {
13  namespace Fonts
14  {
16  {
17  public:
19 
20  FontMaterialSet* Create(const Fonts::FontInstance& fontInstance, const Fonts::FontMaterialSetProperties& properties);
21  private:
22  Rendering::Materials::ITextMaterialFactory& m_textMaterialFactory;
23  };
24  }
25 }