Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "[Android] Use equals to compare GL version string instead of …
…contains. This should really be some sort of sscanf check so we can check if version > 3.0 but we'll worry about that when OpenGL ES 4.0 is released."

This reverts commit bc58e7f.
  • Loading branch information
Sonicadvance1 committed Jul 25, 2013
1 parent bc58e7f commit 4deea2b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -101,7 +101,7 @@ static public boolean SupportsGLES3()

boolean mSupportsGLES3 = false;

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

0 comments on commit 4deea2b

Please sign in to comment.