We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used following code:
void ShowStat() { ZoneScoped; std::string s = "ShowStat"; s += std::to_string(rand()); ZoneName(s.c_str(), s.size()); // blabla.... }
I can search zone name by ZoneScopeN
but I cannot find zone by the name:
Is there anything I missed? Or just a Profiler's bug?
The text was updated successfully, but these errors were encountered:
This is expected and documented behavior.
Sorry, something went wrong.
Thanks for this explaination, but is this behavior correct? Or in other way, how can I search the ZoneName global in profiler?
Use ZoneTransient instead.
ZoneTransient
No branches or pull requests
I used following code:
I can search zone name by ZoneScopeN
but I cannot find zone by the name:
Is there anything I missed? Or just a Profiler's bug?
The text was updated successfully, but these errors were encountered: