--enable-sgi-video-sync
What does --enable-sgi-video-sync do?
Enable use of the SGI_video_sync extension, which can have driver/sandbox/window manager compatibility issues.
Usage
CLILaunch Chrome with --enable-sgi-video-sync using CLI
chrome --enable-sgi-video-syncPuppeteerLaunch Chrome with --enable-sgi-video-sync using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-sgi-video-sync']
});PlaywrightLaunch Chrome with --enable-sgi-video-sync using Playwright
const browser = await chromium.launch({
args: ['--enable-sgi-video-sync']
});SeleniumLaunch Chrome with --enable-sgi-video-sync using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-sgi-video-sync')
driver = webdriver.Chrome(options=options)Build Conditions
ENABLE_VULKAN && \