mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-22 09:49:14 +01:00
gl_driver.cpp: Minimum OpenGLES version is actually 3.2
This commit is contained in:
parent
af7ccc1955
commit
d01e48c5d1
@ -1,4 +1,4 @@
|
||||
// Copyright 2022 Citra Emulator Project
|
||||
// Copyright Citra Emulator Project / Lime3DS Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
@ -177,7 +177,7 @@ void Driver::CheckExtensionSupport() {
|
||||
nv_fragment_shader_interlock = GLAD_GL_NV_fragment_shader_interlock;
|
||||
intel_fragment_shader_ordering = GLAD_GL_INTEL_fragment_shader_ordering;
|
||||
blend_minmax_factor = GLAD_GL_AMD_blend_minmax_factor || GLAD_GL_NV_blend_minmax_factor;
|
||||
is_suitable = GLAD_GL_VERSION_4_3 || GLAD_GL_ES_VERSION_3_1;
|
||||
is_suitable = GLAD_GL_VERSION_4_3 || GLAD_GL_ES_VERSION_3_2;
|
||||
}
|
||||
|
||||
void Driver::FindBugs() {
|
||||
|
Loading…
Reference in New Issue
Block a user