| 503 | // Helper: ImRect (2D axis aligned bounding-box) |
| 504 | // NB: we can't rely on ImVec2 math operators being available here! |
| 505 | struct IMGUI_API ImRect |
| 506 | { |
| 507 | ImVec2 Min; // Upper-left |
| 508 | ImVec2 Max; // Lower-right |
nothing calls this directly
no outgoing calls
no test coverage detected