Rename internal “GLSLES” references to “ESSL”.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2017-03-07 21:03:23 -04:00
parent 0fde3fde35
commit ceb9cd1c0b
4 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -1478,9 +1478,9 @@ Shader::Language Graphics::getShaderLanguageTarget() const
if (gl.isCoreProfile())
return Shader::LANGUAGE_GLSL3;
else if (GLAD_ES_VERSION_3_0)
return Shader::LANGUAGE_GLSLES3;
return Shader::LANGUAGE_ESSL3;
else if (GLAD_ES_VERSION_2_0)
return Shader::LANGUAGE_GLSLES1;
return Shader::LANGUAGE_ESSL1;
else
return Shader::LANGUAGE_GLSL1;
}