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