[Scummvm-git-logs] scummvm master -> 92923a28c2293f542567cbe0a92461e77e285559
digitall
noreply at scummvm.org
Sat Jan 3 02:45:37 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
92923a28c2 BACKENDS: SDL: Add Debugging Output For SDL Video OpenGL Feature Detection
Commit: 92923a28c2293f542567cbe0a92461e77e285559
https://github.com/scummvm/scummvm/commit/92923a28c2293f542567cbe0a92461e77e285559
Author: D G Turner (digitall at scummvm.org)
Date: 2026-01-03T02:43:31Z
Commit Message:
BACKENDS: SDL: Add Debugging Output For SDL Video OpenGL Feature Detection
This is intended to aid debugging of startup slowdown / crashes which are
occurring for some users when running with integrated GPU.
Changed paths:
backends/platform/sdl/sdl.cpp
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index 291d86ce1cf..6085eb840cc 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -291,8 +291,11 @@ void OSystem_SDL::initBackend() {
debug(1, "Using SDL Video Driver \"%s\"", sdlDriverName);
#if defined(USE_OPENGL_GAME) || defined(USE_OPENGL_SHADERS)
+ debug(2, "SDL Video Detecting OpenGL Features...");
detectOpenGLFeaturesSupport();
+ debug(2, "SDL Video Detecting Anti-aliasing Support...");
detectAntiAliasingSupport();
+ debug(2, "SDL Video OpenGL Feature Detection Complete");
#endif
// Create the default event source, in case a custom backend
More information about the Scummvm-git-logs
mailing list