remove dead SK_SUPPORT_LEGACY_GRTYPES dead
authorreed <reed@chromium.org>
Sun, 21 Dec 2014 19:52:15 +0000 (11:52 -0800)
committerCommit bot <commit-bot@chromium.org>
Sun, 21 Dec 2014 19:52:15 +0000 (11:52 -0800)
BUG=skia:
TBR=bsalomon@google.com

Review URL: https://codereview.chromium.org/823503002

include/gpu/GrTypes.h

index 4e225f0..434d929 100644 (file)
@@ -13,8 +13,6 @@
 #include "GrConfig.h"
 #include "SkMath.h"
 
-//#define SK_SUPPORT_LEGACY_GRTYPES
-
 ////////////////////////////////////////////////////////////////////////////////
 
 /**
     friend X operator & (X a, T b); \
 ////////////////////////////////////////////////////////////////////////////////
 
-#ifdef SK_SUPPORT_LEGACY_GRTYPES
-
-/**
- *  Macro to round n up to the next multiple of 4, or return it unchanged if
- *  n is already a multiple of 4
- */
-#define GrALIGN4(n)     SkAlign4(n)
-#define GrIsALIGN4(n)   SkIsAlign4(n)
-
-template <typename T> const T& GrMin(const T& a, const T& b) {
-    return (a < b) ? a : b;
-}
-
-template <typename T> const T& GrMax(const T& a, const T& b) {
-    return (b < a) ? a : b;
-}
-
-/**
- *  16.16 fixed point type
- */
-typedef int32_t GrFixed;
-
-#ifdef SK_DEBUG
-
-static inline int16_t GrToS16(intptr_t x) {
-    SkASSERT((int16_t)x == x);
-    return (int16_t)x;
-}
-
-#else
-
-#define GrToS16(x)  x
-
-#endif
-
-#endif
-
 // compile time versions of min/max
 #define GR_CT_MAX(a, b) (((b) < (a)) ? (a) : (b))
 #define GR_CT_MIN(a, b) (((b) < (a)) ? (b) : (a))