LunarG/VulkanTools

Feature request: API dump actual thread id as well

wasimabbas-arm opened this issue · 0 comments

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.

uint64_t threadID() {

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.