@@ -17,6 +17,8 @@ class WebGLBackend extends Backend {
super( parameters );
+ this.isWebGLBackend = true;
+
}
async init( renderer ) {
@@ -33,6 +33,8 @@ class WebGPUBackend extends Backend {
+ this.isWebGPUBackend = true;
// some parameters require default values other than "undefined"
this.parameters.antialias = ( parameters.antialias === true );