mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 07:49:03 +00:00
Prefer NPOT texture over RECT texture
--HG-- branch : multipass-stereo
This commit is contained in:
parent
43f8adff79
commit
d13da7a398
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ bool CDriverGL::supportNonPowerOfTwoTextures() const
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
bool CDriverGL::isTextureRectangle(ITexture * tex) const
|
bool CDriverGL::isTextureRectangle(ITexture * tex) const
|
||||||
{
|
{
|
||||||
return (supportTextureRectangle() && tex->isBloomTexture() && tex->mipMapOff()
|
return (!supportNonPowerOfTwoTextures() && supportTextureRectangle() && tex->isBloomTexture() && tex->mipMapOff()
|
||||||
&& (!isPowerOf2(tex->getWidth()) || !isPowerOf2(tex->getHeight())));
|
&& (!isPowerOf2(tex->getWidth()) || !isPowerOf2(tex->getHeight())));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue