From c51ae58407c616d9f5b21b735d01592ab9d0c7e5 Mon Sep 17 00:00:00 2001 From: Kyle McNally Date: Mon, 15 Apr 2024 11:31:15 -0400 Subject: [PATCH] don't disable the graphics stack https://github.com/Sparticuz/chromium/issues/247 --- source/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/index.ts b/source/index.ts index 1b5e70f..ef38113 100644 --- a/source/index.ts +++ b/source/index.ts @@ -400,7 +400,11 @@ class Chromium { `Graphics mode must be a boolean, you entered '${value}'` ); } - this.graphicsMode = value; + + // Disabling 'disabling the gpu' + // Blocked by https://github.com/Sparticuz/chromium/issues/247 + // this.graphicsMode = value; + this.graphicsMode = true; } }