You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A renderer's frame count and average frame time (ms) can be measured by adding this to the particular renderer file:
(<any>window).frames=[];(<any>window).report=()=>{constframes=(<any>window).framesasnumber[];constaverage=Math.round(frames.reduce((p,c)=>p+c,0)/frames.length*100)/100;console.log(`frames ${frames.length}, average ${average}ms`);};
Then adding this to the top of the _renderRows function: