0..3: corners (Lower-right, Lower-left, Unused, Unused)
| 5767 | |
| 5768 | // 0..3: corners (Lower-right, Lower-left, Unused, Unused) |
| 5769 | ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n) |
| 5770 | { |
| 5771 | IM_ASSERT(n >= 0 && n < 4); |
| 5772 | ImGuiID id = window->ID; |
| 5773 | id = ImHashStr("#RESIZE", 0, id); |
| 5774 | id = ImHashData(&n, sizeof(int), id); |
| 5775 | return id; |
| 5776 | } |
| 5777 | |
| 5778 | // Borders (Left, Right, Up, Down) |
| 5779 | ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir) |
nothing calls this directly
no test coverage detected