aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/core/SkFixed.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/core/SkFixed.h b/include/core/SkFixed.h
index ac16b3d759..b5987fc208 100644
--- a/include/core/SkFixed.h
+++ b/include/core/SkFixed.h
@@ -10,8 +10,6 @@
#include "SkTypes.h"
-//#define SK_SUPPORTED_DEPRECATED_FIXEDROUND
-
/** \file SkFixed.h
Types and macros for 16.16 fixed point
@@ -77,12 +75,6 @@ typedef int32_t SkFixed;
#define SkFixedCeilToFixed(x) (((x) + SK_Fixed1 - 1) & 0xFFFF0000)
#define SkFixedFloorToFixed(x) ((x) & 0xFFFF0000)
-#ifdef SK_SUPPORTED_DEPRECATED_FIXEDROUND
-# define SkFixedFloor(x) SkFixedFloorToInt(x)
-# define SkFixedCeil(x) SkFixedCeilToInt(x)
-# define SkFixedRound(x) SkFixedRoundToInt(x)
-#endif
-
#define SkFixedAbs(x) SkAbs32(x)
#define SkFixedAve(a, b) (((a) + (b)) >> 1)