Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--d3d11on12

What does --d3d11on12 do?

No description available for this flag.

Usage

CLILaunch Chrome with --d3d11on12 using CLI

chrome --d3d11on12

PuppeteerLaunch Chrome with --d3d11on12 using Puppeteer

const browser = await puppeteer.launch({
  args: ['--d3d11on12']
});

PlaywrightLaunch Chrome with --d3d11on12 using Playwright

const browser = await chromium.launch({
  args: ['--d3d11on12']
});

SeleniumLaunch Chrome with --d3d11on12 using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--d3d11on12')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \