--vulkan-heap-memory-limit-mb
What does --vulkan-heap-memory-limit-mb do?
Specifies the heap limit for Vulkan memory.
Usage
CLILaunch Chrome with --vulkan-heap-memory-limit-mb using CLI
chrome --vulkan-heap-memory-limit-mbPuppeteerLaunch Chrome with --vulkan-heap-memory-limit-mb using Puppeteer
const browser = await puppeteer.launch({
args: ['--vulkan-heap-memory-limit-mb']
});PlaywrightLaunch Chrome with --vulkan-heap-memory-limit-mb using Playwright
const browser = await chromium.launch({
args: ['--vulkan-heap-memory-limit-mb']
});SeleniumLaunch Chrome with --vulkan-heap-memory-limit-mb using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--vulkan-heap-memory-limit-mb')
driver = webdriver.Chrome(options=options)