- Backend update.

This commit is contained in:
Christoph Oelckers 2020-10-16 23:25:18 +02:00
commit 65c52b9825
8 changed files with 89 additions and 6 deletions

View file

@ -57,6 +57,11 @@ FImageTexture::FImageTexture(FImageSource *img) noexcept
}
}
FImageTexture::~FImageTexture()
{
delete mImage;
}
void FImageTexture::SetFromImage()
{
auto img = mImage;