--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-vulkanPuppeteerLaunch 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)