Changed: Don't need to change _PolygonSmooth if value is the same

This commit is contained in:
kervala 2013-11-13 21:55:14 +01:00
parent 1a5100bd93
commit 1d46a6f94e

View file

@ -2252,6 +2252,8 @@ void CDriverGL::enablePolygonSmoothing(bool smooth)
{
H_AUTO_OGL(CDriverGL_enablePolygonSmoothing);
if (_PolygonSmooth == smooth) return;
#ifndef USE_OPENGLES
if(smooth)
glEnable(GL_POLYGON_SMOOTH);