| 563 | s += ')'; |
| 564 | } |
| 565 | void write_location(std::string &s, const location &loc) const |
| 566 | { |
| 567 | if (loc.source.empty() || !_debug_info) |
| 568 | return; |
| 569 | |
| 570 | s += "#line " + std::to_string(loc.line) + '\n'; |
| 571 | } |
| 572 | void write_texture_format(std::string &s, texture_format format) |
| 573 | { |
| 574 | switch (format) |
nothing calls this directly
no test coverage detected