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 bc58e7f42f.
This commit is contained in:
Ryan Houdek 2013-07-25 19:35:01 +00:00
parent bc58e7f42f
commit 4deea2bcae
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class PrefsFragment extends PreferenceFragment {
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"))
{