What does the % mean next to "render" when having the fps displayed

{2CA33972-BEEA-40C0-AF4A-2A6F07C81D0D}
11% Is it how much of a frame is being taken up by rendering or does it mean something else? doesnt seem to be gpu usage either.

1 Like

That percentage shows how much of the total time budget for a single frame was taken up by rendering.

That percentage tells you how much of your total “frame budget” is being spent on rendering.

If your game is running at 120 FPS, it has a tiny budget of only 8.3 milliseconds to build each frame from start to finish (1000ms / 120 = 8.3ms).

The “Render” station on this assembly line took 0.9 milliseconds to do its job.

The 11% means that the Render station used up 11% of that total 8.3-millisecond budget for that one frame.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.