Explorar el Código

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

Michael Herzog hace 1 mes
padre
commit
2df1da2067
Se han modificado 1 ficheros con 1 adiciones y 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号