mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
fix: add --ignore-gpu-blocklist to cloakserve for Docker WebGL support
cloakserve bypasses the wrapper and launches Chrome directly, missing
the GPU blocklist fix from 1380c86. Fixes #58.
This commit is contained in:
@@ -33,6 +33,9 @@ chrome_args = [
|
||||
"--disable-popup-blocking",
|
||||
"--disable-background-networking",
|
||||
"--metrics-recording-only",
|
||||
# GPU blocklist bypass: Chromium blocks WebGL on software GPUs in
|
||||
# Docker/Xvfb. Without this, WebGL vendor/renderer spoofing fails. #58
|
||||
"--ignore-gpu-blocklist",
|
||||
] + get_default_stealth_args() + sys.argv[1:]
|
||||
|
||||
chrome = subprocess.Popen(chrome_args)
|
||||
|
||||
Reference in New Issue
Block a user