evas-gl: Remove extra parentheses

clang warns of equality comparison with extraneous parentheses in
these cases. Remove the extra parens as they are not needed anyway

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-11-17 09:03:53 -05:00
parent 5552e09427
commit a092f0ae9e
1 changed files with 2 additions and 2 deletions

View File

@ -953,7 +953,7 @@ _evgl_glGetFloatv(GLenum pname, GLfloat* params)
}
}
// If it hasn't been initialized yet, return img object size
if ((pname == GL_SCISSOR_BOX) )//|| (pname == GL_VIEWPORT))
if (pname == GL_SCISSOR_BOX) //|| (pname == GL_VIEWPORT))
{
params[0] = (GLfloat)0.0;
params[1] = (GLfloat)0.0;
@ -1149,7 +1149,7 @@ _evgl_glGetIntegerv(GLenum pname, GLint* params)
}
}
// If it hasn't been initialized yet, return img object size
if ((pname == GL_SCISSOR_BOX) )//|| (pname == GL_VIEWPORT))
if (pname == GL_SCISSOR_BOX) //|| (pname == GL_VIEWPORT))
{
params[0] = 0;
params[1] = 0;