Prechádzať zdrojové kódy

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

Michael Herzog 1 mesiac pred
rodič
commit
2df1da2067
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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号