| 3783 | } |
| 3784 | |
| 3785 | void ImGui::RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col) |
| 3786 | { |
| 3787 | draw_list->AddCircleFilled(pos, draw_list->_Data->FontSize * 0.20f, col, 8); |
| 3788 | } |
| 3789 | |
| 3790 | void ImGui::RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz) |
| 3791 | { |
nothing calls this directly
no test coverage detected