diff options
Diffstat (limited to 'src/resources/atlas/atlasmanager.h')
-rw-r--r-- | src/resources/atlas/atlasmanager.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/resources/atlas/atlasmanager.h b/src/resources/atlas/atlasmanager.h index e619ce736..13db9717e 100644 --- a/src/resources/atlas/atlasmanager.h +++ b/src/resources/atlas/atlasmanager.h @@ -58,6 +58,10 @@ class AtlasManager final static void loadEmptyImages(const StringVect &files, std::vector<Image*> &images); + static void emptySort(const std::string &restrict name, + std::vector<TextureAtlas*> &restrict atlases, + const std::vector<Image*> &restrict images); + static void simpleSort(const std::string &restrict name, std::vector<TextureAtlas*> &restrict atlases, const std::vector<Image*> &restrict images, @@ -66,6 +70,8 @@ class AtlasManager final static void createSDLAtlas(TextureAtlas *const atlas) A_NONNULL(1); static void convertAtlas(TextureAtlas *const atlas) A_NONNULL(1); + + static void convertEmptyAtlas(TextureAtlas *const atlas) A_NONNULL(1); }; #endif // USE_OPENGL |