Prefer NPOT texture over RECT texture
This commit is contained in:
parent
a924479a5c
commit
2315ae9c5a
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