diff options
author | Praytic <chernogorovvm@gmail.com> | 2024-09-01 18:26:49 -0700 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-17 08:57:44 +0200 |
commit | 281642831c3f6d6cf5e99b07f699829901511ce4 (patch) | |
tree | b684e393a0296f8cd829631f97120b1bf4f2a6c2 /drivers/gles3 | |
parent | 6b7f36e2a99aec6edd869eb9b9e8ec4f74b56f4e (diff) | |
download | redot-engine-281642831c3f6d6cf5e99b07f699829901511ce4.tar.gz |
Enable MSAA support for all non-web platforms
MSAA support is built into GLES3 core, eliminating the need to check for GL_EXT_framebuffer_multisample, which was necessary only in GLES2 due to the lack of inherent multisample framebuffer support. This commit corrects an oversight from GLES2-based code, ensuring compatibility with GLES3 where multisampling is natively supported without extensions.
(cherry picked from commit fc955fa89f889f28bd632e1cb66fe60925979e37)
Diffstat (limited to 'drivers/gles3')
-rw-r--r-- | drivers/gles3/storage/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gles3/storage/config.cpp b/drivers/gles3/storage/config.cpp index 2b3c19dbb8..d6472c44c1 100644 --- a/drivers/gles3/storage/config.cpp +++ b/drivers/gles3/storage/config.cpp @@ -121,7 +121,7 @@ Config::Config() { #ifdef WEB_ENABLED msaa_supported = (msaa_max_samples > 0); #else - msaa_supported = extensions.has("GL_EXT_framebuffer_multisample"); + msaa_supported = true; #endif #ifndef IOS_ENABLED #ifdef WEB_ENABLED |