| 15201 | } |
| 15202 | |
| 15203 | void ImGui::RenderDragDropTargetRectEx(ImDrawList* draw_list, const ImRect& bb, float rounding) |
| 15204 | { |
| 15205 | ImGuiContext& g = *GImGui; |
| 15206 | draw_list->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_DragDropTargetBg), rounding, 0); |
| 15207 | draw_list->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_DragDropTarget), rounding, g.Style.DragDropTargetBorderSize); |
| 15208 | } |
| 15209 | |
| 15210 | const ImGuiPayload* ImGui::GetDragDropPayload() |
| 15211 | { |
nothing calls this directly
no test coverage detected