diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-03-12 00:54:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-03-12 19:43:14 +0000 |
commit | 88c9d66352c2f4856682efd48482b5b72aca18bf (patch) | |
tree | 7da5207ceb7cccf2866945fe0c6ba75533663704 /assetFactory/assetFactory.h | |
parent | Initial version of texture packer (diff) | |
download | ilt-88c9d66352c2f4856682efd48482b5b72aca18bf.tar.bz2 ilt-88c9d66352c2f4856682efd48482b5b72aca18bf.tar.xz ilt-88c9d66352c2f4856682efd48482b5b72aca18bf.zip |
Support loading references to texture fragments
Diffstat (limited to 'assetFactory/assetFactory.h')
-rw-r--r-- | assetFactory/assetFactory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/assetFactory/assetFactory.h b/assetFactory/assetFactory.h index b47d408..3d52f7f 100644 --- a/assetFactory/assetFactory.h +++ b/assetFactory/assetFactory.h @@ -3,12 +3,14 @@ #include "asset.h" #include "persistence.h" #include "shape.h" +#include "textureFragment.h" #include <filesystem> class AssetFactory : public Persistence::Persistable { public: using Shapes = std::map<std::string, Shape::Ptr, std::less<>>; using Assets = std::map<std::string, Asset::Ptr, std::less<>>; + using TextureFragments = std::map<std::string, TextureFragment::Ptr, std::less<>>; using Colour = glm::vec3; using ColourAlpha = glm::vec4; using Colours = std::map<std::string, Colour, std::less<>>; @@ -20,6 +22,7 @@ public: Shapes shapes; Assets assets; Colours colours; + TextureFragments textureFragments; static Colours parseX11RGB(const char * rgbtxtpath); static void normalizeColourName(std::string &); |