mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
[Android] Another check for OpenGL ES 3.
This commit is contained in:
@ -101,7 +101,8 @@ public class PrefsFragment extends PreferenceFragment {
|
||||
|
||||
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"))
|
||||
{
|
||||
|
Reference in New Issue
Block a user