--vulkan-null
What does --vulkan-null do?
No description available for this flag.
Usage
CLILaunch Chrome with --vulkan-null using CLI
chrome --vulkan-nullPuppeteerLaunch Chrome with --vulkan-null using Puppeteer
const browser = await puppeteer.launch({
args: ['--vulkan-null']
});PlaywrightLaunch Chrome with --vulkan-null using Playwright
const browser = await chromium.launch({
args: ['--vulkan-null']
});SeleniumLaunch Chrome with --vulkan-null using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--vulkan-null')
driver = webdriver.Chrome(options=options)Build Conditions
ENABLE_VULKAN && \