diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-14 14:48:59 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-14 14:48:59 +0100 |
commit | 1cdd7753d37bcf8f626298c3df97a02cc73f266c (patch) | |
tree | f8e83df70e00c9f7f3588638c756ac66a8ab0199 /assetFactory/textureFragment.cpp | |
parent | Current thread partakes in work effort while waiting (diff) | |
download | ilt-1cdd7753d37bcf8f626298c3df97a02cc73f266c.tar.bz2 ilt-1cdd7753d37bcf8f626298c3df97a02cc73f266c.tar.xz ilt-1cdd7753d37bcf8f626298c3df97a02cc73f266c.zip |
Load texture images in Worker
Diffstat (limited to 'assetFactory/textureFragment.cpp')
-rw-r--r-- | assetFactory/textureFragment.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/assetFactory/textureFragment.cpp b/assetFactory/textureFragment.cpp index d153688..0a4ec1d 100644 --- a/assetFactory/textureFragment.cpp +++ b/assetFactory/textureFragment.cpp @@ -11,5 +11,7 @@ TextureFragment::persist(Persistence::PersistenceStore & store) void TextureFragment::postLoad() { - image = std::make_unique<Image>(Resource::mapPath(path), STBI_rgb_alpha); + image = Worker::addWork([this]() { + return std::make_unique<Image>(Resource::mapPath(path), STBI_rgb_alpha); + }); } |