[Scummvm-git-logs] scummvm master -> c952c63b69bd1183ac2468d3f0eb3d27dee55c02
lephilousophe
noreply at scummvm.org
Sun Mar 17 15:06:33 UTC 2024
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:
c952c63b69 AMIGAOS4: Don't use GLES2 system header
Commit: c952c63b69bd1183ac2468d3f0eb3d27dee55c02
https://github.com/scummvm/scummvm/commit/c952c63b69bd1183ac2468d3f0eb3d27dee55c02
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-03-17T16:05:34+01:00
Commit Message:
AMIGAOS4: Don't use GLES2 system header
It is not freely available. Rely on loader instead.
Changed paths:
backends/imgui/backends/imgui_impl_opengl3_scummvm.h
diff --git a/backends/imgui/backends/imgui_impl_opengl3_scummvm.h b/backends/imgui/backends/imgui_impl_opengl3_scummvm.h
index e47b370116e..63f199f8768 100644
--- a/backends/imgui/backends/imgui_impl_opengl3_scummvm.h
+++ b/backends/imgui/backends/imgui_impl_opengl3_scummvm.h
@@ -54,7 +54,7 @@ IMGUI_IMPL_API void ImGui_ImplOpenGL3_DestroyDeviceObjects();
#endif
#if (defined(__APPLE__) && (TARGET_OS_IOS || TARGET_OS_TV)) || (defined(__ANDROID__))
#define IMGUI_IMPL_OPENGL_ES3 // iOS, Android -> GL ES 3, "#version 300 es"
-#elif defined(__EMSCRIPTEN__) || defined(__amigaos4__)
+#elif defined(__EMSCRIPTEN__)
#define IMGUI_IMPL_OPENGL_ES2 // Emscripten -> GL ES 2, "#version 100"
#else
// Otherwise imgui_impl_opengl3_loader.h will be used.
More information about the Scummvm-git-logs
mailing list