This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit 65f0541b9409b96ca56c278baa6b08c7179a5230
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Feb 15 17:17:34 2026 +0000

    add env var to force no gl in comp
    
    E_COMP_NO_GL=1 and e won't try gl (it'll complain still)
---
 src/bin/e_comp_x_randr.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_comp_x_randr.c b/src/bin/e_comp_x_randr.c
index f4b629a75..b6afe1de4 100644
--- a/src/bin/e_comp_x_randr.c
+++ b/src/bin/e_comp_x_randr.c
@@ -1193,7 +1193,8 @@ e_comp_x_randr_canvas_new(Ecore_Window parent, int w, int h)
         if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_OPENGL_X11))
           e_comp_gl_set(EINA_TRUE);
      }
-   if (e_comp_gl_get() && (e_comp_config_get()->engine == E_COMP_ENGINE_GL))
+   if (e_comp_gl_get() && (e_comp_config_get()->engine == E_COMP_ENGINE_GL)
+       && (!getenv("E_COMP_NO_GL")))
      {
         int opt[20];
         int opt_i = 0;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to