Explorar o código

Source: Guard reference to `VideoFrame`. (#32301)

Michael Herzog hai 1 mes
pai
achega
2df1da2067
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/textures/Source.js

+ 1 - 1
src/textures/Source.js

@@ -88,7 +88,7 @@ class Source {
 
 			target.set( data.videoWidth, data.videoHeight, 0 );
 
-		} else if ( data instanceof VideoFrame ) {
+		} else if ( ( typeof VideoFrame !== 'undefined' ) && ( data instanceof VideoFrame ) ) {
 
 			target.set( data.displayHeight, data.displayWidth, 0 );
 

粤ICP备19079148号