P5 library for monitoring performance inspired by stats.js
| Plateforme : | Status: |
|---|---|
Windows |
|
OSX |
|
Linux |
- Track and display Frame per seconds (history to the last frame)
- Track and display Milliseconds needed to render the last frame
- Track and display MBytes of allocated memory
- Windows :
- Windows 10 x64, 16GO, intel i7 3.6Ghz, GPU NVidia GTX 970
- Data tracking are set between the pre() and draw() methods. Each of then run between the main draw() function of processing. Pre() run after the beginDraw() and draw() run at the end the main draw() and before the endDraw();
- Because the tracking run between the main draw() methods the visualizer only display the frame from last computed frame to history n-x. The actual frame will be compute at the and of the draw and add for the next loop.