forked from teamnwah/openmw-tes3coop
select closest power of 2 resolution for the cubemap
This commit is contained in:
parent
56c74fb96f
commit
bccff768ff
1 changed files with 3 additions and 0 deletions
|
@ -683,6 +683,9 @@ 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)
|
||||
|
|
Loading…
Reference in a new issue