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