This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch vtorri_ee_engines
in repository efl.
View the commit online.
commit 83e7192d43a3325defeeca62f2032a631e06171a
Author: Vincent Torri <[email protected]>
AuthorDate: Wed Sep 24 06:11:06 2025 +0200
ecore_evas: remove glew engine internal code
---
src/lib/ecore_evas/Ecore_Evas.h | 2 +-
src/lib/ecore_evas/ecore_evas.c | 8 --------
src/lib/ecore_evas/ecore_evas_module.c | 3 ---
3 files changed, 1 insertion(+), 12 deletions(-)
diff --git a/src/lib/ecore_evas/Ecore_Evas.h b/src/lib/ecore_evas/Ecore_Evas.h
index 481d14cd12..7dd8a3e5be 100644
--- a/src/lib/ecore_evas/Ecore_Evas.h
+++ b/src/lib/ecore_evas/Ecore_Evas.h
@@ -1967,7 +1967,7 @@ EAPI Ecore_Evas *ecore_evas_gl_glew_new(Ecore_Win32_Window *parent,
int x,
int y,
int width,
- int height);
+ int height) EINA_DEPRECATED;
EAPI Ecore_Win32_Window *ecore_evas_win32_window_get(const Ecore_Evas *ee);
diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c
index 4fae47a27f..488c1661d8 100644
--- a/src/lib/ecore_evas/ecore_evas.c
+++ b/src/lib/ecore_evas/ecore_evas.c
@@ -980,13 +980,6 @@ _ecore_evas_constructor_direct3d(int x, int y, int w, int h,
return ecore_evas_direct3d_new(NULL, x, y, w, h);
}
-static Ecore_Evas *
-_ecore_evas_constructor_opengl_glew(int x, int y, int w, int h,
- const char *extra_options EINA_UNUSED)
-{
- return ecore_evas_gl_glew_new(NULL, x, y, w, h);
-}
-
static Ecore_Evas *
_ecore_evas_constructor_buffer(int x EINA_UNUSED, int y EINA_UNUSED, int w, int h, const char *extra_options EINA_UNUSED)
{
@@ -1003,7 +996,6 @@ static const struct ecore_evas_engine _engines[] = {
{"opengl_win32", _ecore_evas_constructor_opengl_win32},
{"software_ddraw", _ecore_evas_constructor_software_ddraw},
{"direct3d", _ecore_evas_constructor_direct3d},
- {"opengl_glew", _ecore_evas_constructor_opengl_glew},
{"opengl_cocoa", _ecore_evas_constructor_cocoa},
{"psl1ght", _ecore_evas_constructor_psl1ght},
{"wayland_shm", _ecore_evas_constructor_wayland_shm},
diff --git a/src/lib/ecore_evas/ecore_evas_module.c b/src/lib/ecore_evas/ecore_evas_module.c
index 526bcf16a8..fba1b58b17 100644
--- a/src/lib/ecore_evas/ecore_evas_module.c
+++ b/src/lib/ecore_evas/ecore_evas_module.c
@@ -278,9 +278,6 @@ _ecore_evas_available_engines_get(void)
#ifdef BUILD_ECORE_EVAS_DIRECT3D
ADDENG("direct3d");
#endif
-#ifdef BUILD_ECORE_EVAS_OPENGL_GLEW
- ADDENG("opengl_glew");
-#endif
#ifdef BUILD_ECORE_EVAS_OPENGL_WIN32
ADDENG("opengl_win32");
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.