| 15495 | } |
| 15496 | |
| 15497 | void ImGui::ClearDragDrop() |
| 15498 | { |
| 15499 | ImGuiContext& g = *GImGui; |
| 15500 | if (g.DragDropActive) |
| 15501 | IMGUI_DEBUG_LOG_ACTIVEID("[dragdrop] ClearDragDrop()\n"); |
| 15502 | g.DragDropActive = false; |
| 15503 | g.DragDropPayload.Clear(); |
| 15504 | g.DragDropAcceptFlagsCurr = ImGuiDragDropFlags_None; |
| 15505 | g.DragDropAcceptIdCurr = g.DragDropAcceptIdPrev = 0; |
| 15506 | g.DragDropAcceptIdCurrRectSurface = FLT_MAX; |
| 15507 | g.DragDropAcceptFrameCount = -1; |
| 15508 | |
| 15509 | g.DragDropPayloadBufHeap.clear(); |
| 15510 | memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal)); |
| 15511 | } |
| 15512 | |
| 15513 | bool ImGui::BeginTooltipHidden() |
| 15514 | { |