From d159739a8b92b2789ca4bd64dc82282cb050b0bb Mon Sep 17 00:00:00 2001 From: Nikita Dobrynin Date: Tue, 7 Jul 2026 10:15:54 +0000 Subject: [PATCH] Fix DRM/EGL segfault on some NVIDIA proprietary drivers (#5960) --- src/platforms/rcore_drm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/platforms/rcore_drm.c b/src/platforms/rcore_drm.c index 5f04a6612..6d7278623 100644 --- a/src/platforms/rcore_drm.c +++ b/src/platforms/rcore_drm.c @@ -1445,7 +1445,8 @@ int InitPlatform(void) return -1; } - if (!eglChooseConfig(platform.device, NULL, NULL, 0, &numConfigs)) + // Providing `framebufferAttribs` is not logically necessary, but it may prevent segfaults on some nvidia drivers + if (!eglChooseConfig(platform.device, framebufferAttribs, NULL, 0, &numConfigs)) { TRACELOG(LOG_WARNING, "DISPLAY: Failed to get EGL config count: 0x%x", eglGetError()); return -1; @@ -2731,4 +2732,4 @@ static void SetupFramebuffer(int width, int height) } } -// EOF \ No newline at end of file +// EOF