mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-07 07:29:58 +01:00
gl_driver.cpp: Minimum OpenGLES version is actually 3.2
This commit is contained in:
parent
f6362f72e2
commit
b6dbb2f6dd
@ -1,4 +1,4 @@
|
|||||||
// Copyright 2022 Citra Emulator Project
|
// Copyright Citra Emulator Project / Lime3DS Emulator Project
|
||||||
// Licensed under GPLv2 or any later version
|
// Licensed under GPLv2 or any later version
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
@ -177,7 +177,7 @@ void Driver::CheckExtensionSupport() {
|
|||||||
nv_fragment_shader_interlock = GLAD_GL_NV_fragment_shader_interlock;
|
nv_fragment_shader_interlock = GLAD_GL_NV_fragment_shader_interlock;
|
||||||
intel_fragment_shader_ordering = GLAD_GL_INTEL_fragment_shader_ordering;
|
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;
|
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() {
|
void Driver::FindBugs() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user