소스 검색

Update PriorityQueue.js

Garrett Johnson 4 년 전
부모
커밋
dbd518d14b
1개의 변경된 파일1개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 8
      src/utilities/PriorityQueue.js

+ 1 - 8
src/utilities/PriorityQueue.js

@@ -1,10 +1,3 @@
-// Fires at the end of the frame and before the next one
-function enqueueMicrotask( callback ) {
-
-	Promise.resolve().then( callback );
-
-}
-
 class PriorityQueue {
 
 	constructor() {
@@ -121,7 +114,7 @@ class PriorityQueue {
 
 		if ( ! this.scheduled ) {
 
-			enqueueMicrotask( () => {
+			requestAnimationFrame( () => {
 
 				this.tryRunJobs();
 				this.scheduled = false;