0..3: corners (Lower-right, Lower-left, Unused, Unused)
| 5344 | |
| 5345 | // 0..3: corners (Lower-right, Lower-left, Unused, Unused) |
| 5346 | ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n) |
| 5347 | { |
| 5348 | IM_ASSERT(n >= 0 && n < 4); |
| 5349 | ImGuiID id = window->ID; |
| 5350 | id = ImHashStr("#RESIZE", 0, id); |
| 5351 | id = ImHashData(&n, sizeof(int), id); |
| 5352 | return id; |
| 5353 | } |
| 5354 | |
| 5355 | // Borders (Left, Right, Up, Down) |
| 5356 | ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir) |
nothing calls this directly
no test coverage detected