All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ITextureFactory.h
1 
2 #pragma once
3 
4 #include "AsyncTexturing.h"
5 #include "GLHelpers.h"
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace Rendering
11  {
12  namespace AsyncTexturing
13  {
15  {
16  public:
17 
18  virtual ~ITextureFactory() {}
19 
20  virtual Texture* Create(const std::string& textureUrl, const Helpers::GLHelpers::TextureInfo& textureInfo, bool hasMipMaps) = 0;
21  };
22  }
23  }
24 }
25