| 8 | namespace daxa |
| 9 | { |
| 10 | auto to_string(GPUResourceId id) -> std::string |
| 11 | { |
| 12 | return std::format("index: {}, version: {}", static_cast<u32>(id.index), static_cast<u32>(id.version)); |
| 13 | } |
| 14 | |
| 15 | auto to_string(ImageId id) -> std::string |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected