From 7ad9c6a157a5b237aa29f766c8bbb05766c9e905 Mon Sep 17 00:00:00 2001 From: krakenunbound Date: Mon, 6 Jul 2026 14:04:47 -0700 Subject: [PATCH] Clarify GLSL PyOpenGL acceleration log --- comfy_extras/nodes_glsl.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/comfy_extras/nodes_glsl.py b/comfy_extras/nodes_glsl.py index c7161973a..6ff08d8f2 100644 --- a/comfy_extras/nodes_glsl.py +++ b/comfy_extras/nodes_glsl.py @@ -38,6 +38,10 @@ os.environ.setdefault("PYOPENGL_PLATFORM", "egl") import OpenGL OpenGL.USE_ACCELERATE = False +logging.getLogger("OpenGL.acceleratesupport").setLevel(logging.WARNING) +logger.info( + "Using ComfyUI GLSL ANGLE/EGL backend; optional PyOpenGL wrapper acceleration is disabled for compatibility. GPU shader rendering remains enabled." +) def _patch_find_library():