aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPath.h
diff options
context:
space:
mode:
authorGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-11-08 19:00:26 +0000
committerGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-11-08 19:00:26 +0000
commit56c69773aea56c6c6bd47bc7e7970dd081205184 (patch)
tree8897eb8c11b991b04cb60cc9283d7c541d8217f0 /include/core/SkPath.h
parent6245ab718dea4dfb6415e97de6e8667f4b13de38 (diff)
Update files to use SK_BUILD_FOR_ANDROID.
This CL also removes any unecessary references to the ANDROID definition. Review URL: http://codereview.appspot.com/5354049 git-svn-id: http://skia.googlecode.com/svn/trunk@2629 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkPath.h')
-rw-r--r--include/core/SkPath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkPath.h b/include/core/SkPath.h
index 5982ea0e68..8eedb4655c 100644
--- a/include/core/SkPath.h
+++ b/include/core/SkPath.h
@@ -13,7 +13,7 @@
#include "SkMatrix.h"
#include "SkTDArray.h"
-#ifdef ANDROID
+#ifdef SK_BUILD_FOR_ANDROID
#define GEN_ID_INC fGenerationID++
#define GEN_ID_PTR_INC(ptr) ptr->fGenerationID++
#else
@@ -646,7 +646,7 @@ public:
void flatten(SkWriter32&) const;
void unflatten(SkReader32&);
-#ifdef ANDROID
+#ifdef SK_BUILD_FOR_ANDROID
uint32_t getGenerationID() const;
#endif
@@ -660,7 +660,7 @@ private:
uint8_t fSegmentMask;
mutable uint8_t fBoundsIsDirty;
mutable uint8_t fConvexity;
-#ifdef ANDROID
+#ifdef SK_BUILD_FOR_ANDROID
uint32_t fGenerationID;
#endif