Преглед на файлове

VideoTexture: Use requestAnimationFrame for first call too.

Mr.doob преди 8 години
родител
ревизия
8741156706
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      src/textures/VideoTexture.js

+ 3 - 3
src/textures/VideoTexture.js

@@ -14,17 +14,17 @@ function VideoTexture( video, mapping, wrapS, wrapT, magFilter, minFilter, forma
 
 	function update() {
 
-		requestAnimationFrame( update );
-
 		if ( video.readyState >= video.HAVE_CURRENT_DATA ) {
 
 			scope.needsUpdate = true;
 
 		}
 
+		requestAnimationFrame( update );
+
 	}
 
-	update();
+	requestAnimationFrame( udpate );
 
 }