gl_driver.cpp: Minimum OpenGLES version is actually 3.2
Some checks failed
lime-build / source (push) Has been cancelled
lime-build / linux (appimage) (push) Has been cancelled
lime-build / linux (fresh) (push) Has been cancelled
lime-build / macos (arm64) (push) Has been cancelled
lime-build / macos (x86_64) (push) Has been cancelled
lime-build / windows (msvc) (push) Has been cancelled
lime-build / windows (msys2) (push) Has been cancelled
lime-build / android (push) Has been cancelled
lime-format / clang-format (push) Has been cancelled
lime-transifex / transifex (push) Has been cancelled
lime-build / macos-universal (push) Has been cancelled
lime-build / release (push) Has been cancelled

This commit is contained in:
Reg Tiangha 2024-09-27 22:53:59 -06:00 committed by OpenSauce
parent af7ccc1955
commit d01e48c5d1

View file

@ -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() {