Browse Source

WebGPU: Removed enable-unsafe-webgpu from error message.

Mr.doob 2 years ago
parent
commit
124e7cc8d9
1 changed files with 0 additions and 2 deletions
  1. 0 2
      examples/jsm/capabilities/WebGPU.js

+ 0 - 2
examples/jsm/capabilities/WebGPU.js

@@ -16,8 +16,6 @@ class WebGPU {
 
 		let message = 'Your browser does not support <a href="https://gpuweb.github.io/gpuweb/" style="color:blue">WebGPU</a>';
 
-		if ( !! window.chrome ) message += '<br>Try: <b>chrome://flags/#enable-unsafe-webgpu</b>';
-
 		const element = document.createElement( 'div' );
 		element.id = 'webgpumessage';
 		element.style.fontFamily = 'monospace';