mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 20:19:57 +00:00
allow non-power-of-2 sized cubemaps
This commit is contained in:
parent
902862aa8b
commit
2b5f147545
1 changed files with 1 additions and 3 deletions
|
@ -683,9 +683,6 @@ namespace MWRender
|
|||
else if (screenshotMapping == 2)
|
||||
screenshotH = screenshotW; // use square resolution for planet mapping
|
||||
|
||||
if (!rawCubemap)
|
||||
cubeSize = pow(2,round(log2(cubeSize))); // select closest power of 2 for GPU
|
||||
|
||||
std::vector<osg::ref_ptr<osg::Image>> images;
|
||||
|
||||
for (int i = 0; i < 6; ++i)
|
||||
|
@ -745,6 +742,7 @@ namespace MWRender
|
|||
// run on GPU now:
|
||||
|
||||
osg::ref_ptr<osg::TextureCubeMap> cubeTexture (new osg::TextureCubeMap);
|
||||
cubeTexture->setResizeNonPowerOfTwoHint(false);
|
||||
|
||||
cubeTexture->setWrap(osg::Texture::WRAP_S, osg::Texture::CLAMP_TO_EDGE);
|
||||
cubeTexture->setWrap(osg::Texture::WRAP_T, osg::Texture::CLAMP_TO_EDGE);
|
||||
|
|
Loading…
Reference in a new issue