1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0023630: Incorrect NULL check in OpenGl_Workspace::EnableTexture()

This commit is contained in:
kgv 2012-12-11 17:57:50 +04:00
parent 305cc3f88a
commit bca1d6e249

View File

@ -408,11 +408,11 @@ Handle(OpenGl_Texture) OpenGl_Workspace::EnableTexture (const Handle(OpenGl_Text
return DisableTexture();
}
if (myTextureBound.IsNull() && myTextureBound == theTexture)
if (myTextureBound == theTexture
&& (theParams.IsNull() || theParams == theTexture->GetParams()))
{
Handle(OpenGl_Texture) aPrevTexture = myTextureBound;
myTextureBound = theTexture;
return aPrevTexture;
// already bound
return myTextureBound;
}
Handle(OpenGl_Texture) aPrevTexture = DisableTexture();