mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
[Android] Another check for OpenGL ES 3.
This commit is contained in:
parent
b6e9a75bdf
commit
952aa714fd
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,8 @@ public class PrefsFragment extends PreferenceFragment {
|
||||||
|
|
||||||
boolean mSupportsGLES3 = false;
|
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;
|
mSupportsGLES3 = true;
|
||||||
if (!mSupportsGLES3 && m_GLVendor.equals("Qualcomm"))
|
if (!mSupportsGLES3 && m_GLVendor.equals("Qualcomm"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue