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
The current performance stats display the current value along with the minimum and maximum values during measurement. However, the minimum and maximum values are highly unpredictable and do not provide meaningful insights into the overall condition. Instead, presenting the accumulated values as an average would be more effective and informative.
For example in case of FPS:
accumulatedFPS = 0; //FPS in accumulated value.
...
if (first frame) accumulatedFPS += currentFPS;
else accumulatedFPS = (accumulatedFPS + currentFps) / 2 //update it every frame.
Eventually, we can display the accumulatedFPS in the format: current fps (accumulated fps), instead of the current format: current fps (min fps- max fps). This approach can also be applied to memory usage and other performance stats.
The text was updated successfully, but these errors were encountered:
The current performance stats display the current value along with the minimum and maximum values during measurement. However, the minimum and maximum values are highly unpredictable and do not provide meaningful insights into the overall condition. Instead, presenting the accumulated values as an average would be more effective and informative.
For example in case of FPS:
Eventually, we can display the
accumulatedFPS
in the format: current fps (accumulated fps), instead of the current format: current fps (min fps- max fps). This approach can also be applied to memory usage and other performance stats.The text was updated successfully, but these errors were encountered: