Merge pull request #96455 from Praytic/msaa-support-macos

Enable MSAA support for all non-web platforms
This commit is contained in:
Rémi Verschelde 2024-09-03 11:43:59 +02:00
commit cd2f14e66b
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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