| 419 | } |
| 420 | |
| 421 | void ImGui::BulletText(const char* fmt, ...) |
| 422 | { |
| 423 | va_list args; |
| 424 | va_start(args, fmt); |
| 425 | BulletTextV(fmt, args); |
| 426 | va_end(args); |
| 427 | } |
| 428 | |
| 429 | // Text with a little bullet aligned to the typical tree node. |
| 430 | void ImGui::BulletTextV(const char* fmt, va_list args) |
nothing calls this directly
no outgoing calls
no test coverage detected