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
Currently API dump will save thread ids into a std::map and return index of the thread id in the map which is a sequential number from 0 to something.
std::map
VulkanTools/layersvt/api_dump.h
Line 859 in 1ea8d16
This looks good but unusable. I can't compare this to the actual thread IDs I get in my application that I get via std::this_thread::get_id()
std::this_thread::get_id()
Ideally threadID() could return a pair of actual thread id as string and the map incremental id so both can be displayed.
threadID()
The text was updated successfully, but these errors were encountered:
charles-lunarg
No branches or pull requests
Currently API dump will save thread ids into a
std::map
and return index of the thread id in the map which is a sequential number from 0 to something.VulkanTools/layersvt/api_dump.h
Line 859 in 1ea8d16
This looks good but unusable. I can't compare this to the actual thread IDs I get in my application that I get via
std::this_thread::get_id()
Ideally
threadID()
could return a pair of actual thread id as string and the map incremental id so both can be displayed.The text was updated successfully, but these errors were encountered: