From 0fb362dce38f62c08e488a0ffffbc90d82b09eec Mon Sep 17 00:00:00 2001 From: Daniel Johnson Date: Sun, 7 Apr 2024 08:21:15 -0400 Subject: [PATCH] Switch env-var to WEBKIT_DISABLE_DMABUF_RENDERER, and it does not go to 11 actually. --- bin/lutris | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/lutris b/bin/lutris index 258a7d25a..548563b9a 100755 --- a/bin/lutris +++ b/bin/lutris @@ -55,8 +55,8 @@ try: except ImportError: pass -if "WEBKIT_DISABLE_COMPOSITING_MODE" not in os.environ: - os.environ["WEBKIT_DISABLE_COMPOSITING_MODE"] = "11" +if "WEBKIT_DISABLE_DMABUF_RENDERER" not in os.environ: + os.environ["WEBKIT_DISABLE_DMABUF_RENDERER"] = "1" from lutris.gui.application import Application # pylint: disable=no-name-in-module