From 2665b85b2bd08faabf7c520a622a0e4d3465245f Mon Sep 17 00:00:00 2001 From: Romain Guy Date: Mon, 18 Oct 2010 15:11:50 -0700 Subject: Small cleanup. Change-Id: I0e5b9154a2d93af793d62f462d68cb7c6c3f6d75 --- libs/hwui/utils/Compare.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/hwui/utils') diff --git a/libs/hwui/utils/Compare.h b/libs/hwui/utils/Compare.h index ddb9c0b..5ea0fc9 100644 --- a/libs/hwui/utils/Compare.h +++ b/libs/hwui/utils/Compare.h @@ -26,14 +26,14 @@ /** * Compare floats. */ -#define FLOAT_COMPARE(a) \ +#define LTE_FLOAT(a) \ if (a < rhs.a) return true; \ if (ALMOST_EQUAL(a, rhs.a)) /** * Compare integers. */ -#define INT_COMPARE(a) \ +#define LTE_INT(a) \ if (a < rhs.a) return true; \ if (a == rhs.a) -- cgit v1.1