Chrome Flags Reference

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

--d3d11-warp

What does --d3d11-warp do?

No description available for this flag.

Usage

CLILaunch Chrome with --d3d11-warp using CLI

chrome --d3d11-warp

PuppeteerLaunch Chrome with --d3d11-warp using Puppeteer

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

PlaywrightLaunch Chrome with --d3d11-warp using Playwright

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

SeleniumLaunch Chrome with --d3d11-warp using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--d3d11-warp')

driver = webdriver.Chrome(options=options)

Build Conditions

ENABLE_VULKAN && \