Chrome Flags Reference

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

--webview-draw-functor-uses-vulkan

What does --webview-draw-functor-uses-vulkan do?

Indicate that the this is being used by Android WebView and its draw functor is using vulkan.

Usage

CLILaunch Chrome with --webview-draw-functor-uses-vulkan using CLI

chrome --webview-draw-functor-uses-vulkan

PuppeteerLaunch Chrome with --webview-draw-functor-uses-vulkan using Puppeteer

const browser = await puppeteer.launch({
  args: ['--webview-draw-functor-uses-vulkan']
});

PlaywrightLaunch Chrome with --webview-draw-functor-uses-vulkan using Playwright

const browser = await chromium.launch({
  args: ['--webview-draw-functor-uses-vulkan']
});

SeleniumLaunch Chrome with --webview-draw-functor-uses-vulkan using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--webview-draw-functor-uses-vulkan')

driver = webdriver.Chrome(options=options)