From eb55885e9a9eec670ed98cbd12dc96d63e6a6623 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 15 Feb 2017 11:38:06 -0500 Subject: Remove unused FX_RECT methods MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These methods aren't used, removed. Change-Id: Iac298cbfe2cc46dd0358f591f1d7f44494a779c0 Reviewed-on: https://pdfium-review.googlesource.com/2714 Commit-Queue: dsinclair Reviewed-by: Nicolás Peña --- core/fxcrt/fx_basic_coords.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'core/fxcrt/fx_basic_coords.cpp') 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, -- cgit v1.2.3