summaryrefslogtreecommitdiff
path: root/core/fxcrt/fx_basic_coords.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/fx_basic_coords.cpp')
-rw-r--r--core/fxcrt/fx_basic_coords.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/core/fxcrt/fx_basic_coords.cpp b/core/fxcrt/fx_basic_coords.cpp
index 0567fa76c5..0785c7821b 100644
--- a/core/fxcrt/fx_basic_coords.cpp
+++ b/core/fxcrt/fx_basic_coords.cpp
@@ -50,15 +50,7 @@ void FX_RECT::Intersect(const FX_RECT& src) {
left = top = right = bottom = 0;
}
}
-void FX_RECT::Union(const FX_RECT& other_rect) {
- Normalize();
- FX_RECT other = other_rect;
- other.Normalize();
- left = left < other.left ? left : other.left;
- right = right > other.right ? right : other.right;
- bottom = bottom > other.bottom ? bottom : other.bottom;
- top = top < other.top ? top : other.top;
-}
+
bool GetIntersection(FX_FLOAT low1,
FX_FLOAT high1,
FX_FLOAT low2,