lc-soft/LCUI



































The issue has been closed
Add FPS meter #192
lc-soft posted onGitHub
Is your feature request related to a problem? Please describe.
We need a graphical user interface to display the current rendering state to debug performance issues.
Describe the solution you'd like
Refer the Chrome Browser:
This is the list of requirements:
- Mode
- Normal: show all content
- Minimized: only show fps and chart, refer: https://darsa.in/fpsmeter/
- Note: The mode should be switched when clicking it.
- Charts
- Chart widget: receive an array of integers and draw them into a bar chart, it should inherit from canvas widget
- FPS chart: show the number of frames updated every second
- Widget updates chart: show the number of components updated every second
- Note 1: If nothing is rendered in the current frame then the fps chart should not be updated
- Note 2: All statistics should ignore the effect of the fps meter
- Labels
- Frame Rate
- fps: ${fps} fps
- fps range: 1-${settings.frame_rate_cap}
- Parallel rendering threads: ${used}/${total}
- Updates
- Updated: ${updatedWidgets}
- Total: ${totalWidgets}
- Note: The semantics of these labels may not be clear, you can improve it.
- APIs
- Add APIs to collect the above data
- Update the existing APIs to collect the above data
- Note: This work requires many reviews and changes to meet the author's expectations.
- Use fps meter instead of fps textview in test/test_render.c
Additional context
How to draw a chart?
You need these:
- i
- x, y
- fps_data
- LCUIWidget_NewPrototype("fps-meter-chart", "canvas")
- Canvas_GetContext()
for (x = 0; i < fps_data_length; ++x)
- CanvasContext_FillRect()
I believe you have guessed the implementation method through these keywords.
What does it look like?
I have written css and html code, you can refer to it:
https://codepen.io/lc-soft/pen/NWxYpGv?editors=1100
The effect of the bar chart should be the following: