aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PaintTest.cpp
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2014-10-23 10:23:07 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-23 10:23:07 -0700
commite3aee8fb7b041b3949fc912ef21b2e44650b7ee9 (patch)
tree9e6b53942f94e024f64237db0e82e4cb359fada9 /tests/PaintTest.cpp
parentda59f05c6738dbb9a92cad21c608cdfae53a76b2 (diff)
Remove android specific genID from SkPaint.
Diffstat (limited to 'tests/PaintTest.cpp')
-rw-r--r--tests/PaintTest.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/PaintTest.cpp b/tests/PaintTest.cpp
index 9b49ec1e85..4c45eed761 100644
--- a/tests/PaintTest.cpp
+++ b/tests/PaintTest.cpp
@@ -158,41 +158,16 @@ DEF_TEST(Paint_copy, reporter) {
SkPaint copiedPaint = paint;
REPORTER_ASSERT(reporter, paint == copiedPaint);
-#ifdef SK_BUILD_FOR_ANDROID
- // the copy constructor should preserve the Generation ID
- uint32_t paintGenID = paint.getGenerationID();
- uint32_t copiedPaintGenID = copiedPaint.getGenerationID();
- REPORTER_ASSERT(reporter, paintGenID == copiedPaintGenID);
- REPORTER_ASSERT(reporter, paint == copiedPaint);
-#endif
-
// copy the paint using the equal operator and check they are the same
copiedPaint = paint;
REPORTER_ASSERT(reporter, paint == copiedPaint);
-#ifdef SK_BUILD_FOR_ANDROID
- // the equals operator should increment the Generation ID
- REPORTER_ASSERT(reporter, paint.getGenerationID() == paintGenID);
- REPORTER_ASSERT(reporter, copiedPaint.getGenerationID() != copiedPaintGenID);
- copiedPaintGenID = copiedPaint.getGenerationID(); // reset to the new value
- REPORTER_ASSERT(reporter, paint == copiedPaint); // operator== ignores fGenerationID
-#endif
-
// clean the paint and check they are back to their initial states
SkPaint cleanPaint;
paint.reset();
copiedPaint.reset();
REPORTER_ASSERT(reporter, cleanPaint == paint);
REPORTER_ASSERT(reporter, cleanPaint == copiedPaint);
-
-#ifdef SK_BUILD_FOR_ANDROID
- // the reset function should increment the Generation ID
- REPORTER_ASSERT(reporter, paint.getGenerationID() != paintGenID);
- REPORTER_ASSERT(reporter, copiedPaint.getGenerationID() != copiedPaintGenID);
- // operator== ignores fGenerationID
- REPORTER_ASSERT(reporter, cleanPaint == paint);
- REPORTER_ASSERT(reporter, cleanPaint == copiedPaint);
-#endif
}
// found and fixed for webkit: mishandling when we hit recursion limit on