mesa: minor simplification in _mesa_es3_error_check_format_and_type()

The type_valid local was set to true and never changed.
This commit is contained in:
Brian Paul
2013-12-17 16:20:29 -07:00
parent ca3df5eeda
commit a9bf5999d1
+1 -3
View File
@@ -1694,8 +1694,6 @@ GLenum
_mesa_es3_error_check_format_and_type(GLenum format, GLenum type,
GLenum internalFormat)
{
GLboolean type_valid = GL_TRUE;
switch (format) {
case GL_RGBA:
switch (type) {
@@ -2116,5 +2114,5 @@ _mesa_es3_error_check_format_and_type(GLenum format, GLenum type,
break;
}
return type_valid ? GL_NO_ERROR : GL_INVALID_OPERATION;
return GL_NO_ERROR;
}