1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 14:45:31 +00:00

Disable unRefImageDataAfterApply

This commit is contained in:
scrawl 2015-03-27 23:25:15 +01:00
parent 236d628884
commit ac2612926e

View file

@ -1407,7 +1407,8 @@ namespace NifOsg
osgDB::ReaderWriter::ReadResult result = reader->readImage(*mResourceManager->get(filename.c_str()), opts);
osg::Image* image = result.getImage();
osg::Texture2D* texture2d = new osg::Texture2D;
texture2d->setUnRefImageDataAfterApply(true);
// Can be enabled for single-context, i.e. in openmw
//texture2d->setUnRefImageDataAfterApply(true);
texture2d->setImage(image);
unsigned int clamp = static_cast<unsigned int>(tex.clamp);