Update SteamOS GPU flags for improved compatibility

Refined GPU command line switches for SteamOS/Gamescope in main.js to use ANGLE with X11, enable VulkanFromANGLE, and adjust feature flags. Updated the start:steamos script in package.json to match these changes for better webview rendering and stability on Steam Deck.
This commit is contained in:
2025-12-28 11:54:37 +13:00
parent 541c974397
commit e77bdfd962
2 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
"main": "main.js",
"scripts": {
"start": "electron .",
"start:steamos": "electron . --ozone-platform=x11 --disable-gpu-compositing --disable-gpu-vsync --no-sandbox --disable-dev-shm-usage --disable-features=VizDisplayCompositor",
"start:steamos": "electron . --ozone-platform=x11 --use-angle=gl --angle-platform-type=x11 --in-process-gpu --no-sandbox --disable-dev-shm-usage --disable-features=VizDisplayCompositor",
"start:linux-safe": "electron . --disable-gpu --disable-gpu-compositing --no-sandbox",
"dist": "electron-builder",
"dist:appimage": "electron-builder --linux AppImage",