What's the difference between Inter-frame and GPU-frame

when i tested a blank babylon scene it gives me this
image
which frame time should i focus more on?

then in my own project i get this

inter frame is the time between the end of render and start of the next render.

gpu frame is the time spent on the gpu to run all the gpu commands for the frame.

One basically highlights CPU time and the other GPU time.

2 Likes

how do i know which function trigger the gpu or cpu?

All WEBGL calls will be on the GPU.

All JS calls will be on the CPU.

1 Like

true