| 3794 | } |
| 3795 | |
| 3796 | void ImGui::RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col) |
| 3797 | { |
| 3798 | draw_list->AddCircleFilled(pos, draw_list->_Data->FontSize * 0.20f, col, 8); |
| 3799 | } |
| 3800 | |
| 3801 | void ImGui::RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz) |
| 3802 | { |
nothing calls this directly
no test coverage detected