0..3: corners (Lower-right, Lower-left, Unused, Unused)
| 7188 | |
| 7189 | // 0..3: corners (Lower-right, Lower-left, Unused, Unused) |
| 7190 | ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n) |
| 7191 | { |
| 7192 | IM_ASSERT(n >= 0 && n < 4); |
| 7193 | ImGuiID id = window->DockIsActive ? window->DockNode->HostWindow->ID : window->ID; |
| 7194 | id = ImHashStr("#RESIZE", 0, id); |
| 7195 | id = ImHashData(&n, sizeof(int), id); |
| 7196 | return id; |
| 7197 | } |
| 7198 | |
| 7199 | // Borders (Left, Right, Up, Down) |
| 7200 | ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir) |
nothing calls this directly
no test coverage detected