[Scummvm-git-logs] scummvm master -> 42ff7120dc006ba5e129ca555613a1424c93acf1

lephilousophe noreply at scummvm.org
Thu Oct 6 17:57:26 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
42ff7120dc SDL: Fix missing replacement for enginesShadersSupported


Commit: 42ff7120dc006ba5e129ca555613a1424c93acf1
    https://github.com/scummvm/scummvm/commit/42ff7120dc006ba5e129ca555613a1424c93acf1
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2022-10-06T19:53:52+02:00

Commit Message:
SDL: Fix missing replacement for enginesShadersSupported

Changed paths:
    backends/platform/sdl/sdl.cpp


diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index c11f08de12a..fd0842b5d91 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -372,7 +372,7 @@ void OSystem_SDL::detectOpenGLFeaturesSupport() {
 	_oglType = OpenGL::kContextGL;
 	OpenGLContext.initialize(_oglType);
 	_supportsFrameBuffer = OpenGLContext.framebufferObjectSupported;
-	_supportsShaders = OpenGLContext.shadersSupported;
+	_supportsShaders = OpenGLContext.enginesShadersSupported;
 	OpenGLContext.reset();
 #endif
 #endif




More information about the Scummvm-git-logs mailing list