[Scummvm-git-logs] scummvm master -> 6bcd18f1260d66063e970444dbef351b1dac13bd
digitall
noreply at scummvm.org
Sun Jun 26 22:15:35 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:
6bcd18f126 OPENGL: Add Missing Header Defining USE_FORCED_GLES Symbol to Shader Code
Commit: 6bcd18f1260d66063e970444dbef351b1dac13bd
https://github.com/scummvm/scummvm/commit/6bcd18f1260d66063e970444dbef351b1dac13bd
Author: D G Turner (digitall at scummvm.org)
Date: 2022-06-26T23:14:14+01:00
Commit Message:
OPENGL: Add Missing Header Defining USE_FORCED_GLES Symbol to Shader Code
This missing header meant that USE_FORCED_GLES would always be undefined
and thus by default resolve to false i.e. disabled.
Changed paths:
graphics/opengl/shader.cpp
diff --git a/graphics/opengl/shader.cpp b/graphics/opengl/shader.cpp
index bfff6766e6d..c2b19f1158c 100644
--- a/graphics/opengl/shader.cpp
+++ b/graphics/opengl/shader.cpp
@@ -22,6 +22,8 @@
#include "common/scummsys.h"
#include "common/config-manager.h"
+#include "graphics/opengl/system_headers.h"
+
#if defined(USE_OPENGL) && !USE_FORCED_GLES
#include "graphics/opengl/shader.h"
More information about the Scummvm-git-logs
mailing list