What is UpdateRSI? (Profiler abnormal values)

In some game launches I see high values of the UpdateRSI parameter in the profiler, but I don’t really understand what they are based on. What exactly does this value mean? Searching the forum and manual did not give an answer.

upd.
Hmm. From source code it looks like it’s the render script execution time, but that doesn’t give any insight into what’s taking so long.

1 Like

It looks like we are not measuring all parts of the UpdateRenderScriptInstance() function. In your screenshot there’s a few sub-scopes

Then we iterate over the command buffer via ParseCommands:

I bet it is one of the commands that take long and we do not profile all of them.

Thanks for the reply. I did some more research comparing two technically identical projects, but one has a large RSI the other is regular and found out suddenly that in the first project the checkbox verify graphics calls was switched off. After switching it on the values normalised. :crazy_face:

3 Likes