0..3: corners (Lower-right, Lower-left, Unused, Unused)
| 6706 | |
| 6707 | // 0..3: corners (Lower-right, Lower-left, Unused, Unused) |
| 6708 | ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n) |
| 6709 | { |
| 6710 | IM_ASSERT(n >= 0 && n < 4); |
| 6711 | ImGuiID id = window->ID; |
| 6712 | id = ImHashStr("#RESIZE", 0, id); |
| 6713 | id = ImHashData(&n, sizeof(int), id); |
| 6714 | return id; |
| 6715 | } |
| 6716 | |
| 6717 | // Borders (Left, Right, Up, Down) |
| 6718 | ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir) |
nothing calls this directly
no test coverage detected