Difference between revisions of "Useful Chrome Flags"
From Verge3D Wiki
Jump to navigationJump to searchm (Admin moved page Test to Useful Chrome Flags without leaving a redirect) |
|||
Line 1: | Line 1: | ||
== Disable WebGL (both WebGL 1.0 and WebGL 2.0) == | |||
<code>google-chrome --disable-webgl</code> | |||
Run Chrome with this flag to test that your app response properly to missing WebGL capabilities on the user device. | |||
== Disable WebGL 2.0 only == | |||
<code>google-chrome --disable-webgl2</code> | |||
Specify this flag to simulate running your app on older devices with no WebGL 2.0 support. | |||
== Disable GPU hacks == | |||
<code>google-chrome --disable-gpu-driver-bug-workarounds</code> |
Revision as of 19:23, 1 August 2021
Disable WebGL (both WebGL 1.0 and WebGL 2.0)
google-chrome --disable-webgl
Run Chrome with this flag to test that your app response properly to missing WebGL capabilities on the user device.
Disable WebGL 2.0 only
google-chrome --disable-webgl2
Specify this flag to simulate running your app on older devices with no WebGL 2.0 support.
Disable GPU hacks
google-chrome --disable-gpu-driver-bug-workarounds