Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Another check for OpenGL ES 3.
  • Loading branch information
Sonicadvance1 committed Jul 27, 2013
1 parent b6e9a75 commit 952aa71
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -101,7 +101,8 @@ static public boolean SupportsGLES3()

boolean mSupportsGLES3 = false;

if (m_GLVersion.contains("OpenGL ES 3.0")) // 3.0 support
if (m_GLVersion.contains("OpenGL ES 3.0") ||
m_GLVersion.equals("OpenGL ES 3.0")) // 3.0 support
mSupportsGLES3 = true;
if (!mSupportsGLES3 && m_GLVendor.equals("Qualcomm"))
{
Expand Down

0 comments on commit 952aa71

Please sign in to comment.