OLD | NEW |
1 #include "Test.h" | 1 #include "Test.h" |
2 #include "TestClassDef.h" | 2 #include "TestClassDef.h" |
3 | 3 |
4 #include "SkPixelRef.h" | 4 #include "SkPixelRef.h" |
5 #include "SkMallocPixelRef.h" | 5 #include "SkMallocPixelRef.h" |
6 | 6 |
7 namespace { | 7 namespace { |
8 | 8 |
9 class TestListener : public SkPixelRef::GenIDChangeListener { | 9 class TestListener : public SkPixelRef::GenIDChangeListener { |
10 public: | 10 public: |
11 explicit TestListener(int* ptr) : fPtr(ptr) {} | 11 explicit TestListener(int* ptr) : fPtr(ptr) {} |
12 void onChange() SK_OVERRIDE { (*fPtr)++; } | 12 void onChange() SK_OVERRIDE { (*fPtr)++; } |
13 private: | 13 private: |
14 int* fPtr; | 14 int* fPtr; |
15 }; | 15 }; |
16 | 16 |
17 } // namespace | 17 } // namespace |
18 | 18 |
19 DEF_TEST(PixelRef_GenIDChange, r) { | 19 DEF_TEST(PixelRef_GenIDChange, r) { |
20 SkImageInfo info = { 10, 10, kPMColor_SkColorType, kPremul_SkAlphaType }; | 20 SkMallocPixelRef pixelRef(NULL, 0, NULL); // We don't really care about the
pixels here. |
21 | |
22 SkAutoTUnref<SkPixelRef> pixelRef(SkMallocPixelRef::NewAllocate(info, 0, NUL
L)); | |
23 | 21 |
24 // Register a listener. | 22 // Register a listener. |
25 int count = 0; | 23 int count = 0; |
26 pixelRef->addGenIDChangeListener(SkNEW_ARGS(TestListener, (&count))); | 24 pixelRef.addGenIDChangeListener(SkNEW_ARGS(TestListener, (&count))); |
27 REPORTER_ASSERT(r, 0 == count); | 25 REPORTER_ASSERT(r, 0 == count); |
28 | 26 |
29 // No one has looked at our pixelRef's generation ID, so invalidating it doe
sn't make sense. | 27 // No one has looked at our pixelRef's generation ID, so invalidating it doe
sn't make sense. |
30 // (An SkPixelRef tree falls in the forest but there's nobody around to hear
it. Do we care?) | 28 // (An SkPixelRef tree falls in the forest but there's nobody around to hear
it. Do we care?) |
31 pixelRef->notifyPixelsChanged(); | 29 pixelRef.notifyPixelsChanged(); |
32 REPORTER_ASSERT(r, 0 == count); | 30 REPORTER_ASSERT(r, 0 == count); |
33 | 31 |
34 // Force the generation ID to be calculated. | 32 // Force the generation ID to be calculated. |
35 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID()); | 33 REPORTER_ASSERT(r, 0 != pixelRef.getGenerationID()); |
36 | 34 |
37 // Our listener was dropped in the first call to notifyPixelsChanged(). Thi
s is a no-op. | 35 // Our listener was dropped in the first call to notifyPixelsChanged(). Thi
s is a no-op. |
38 pixelRef->notifyPixelsChanged(); | 36 pixelRef.notifyPixelsChanged(); |
39 REPORTER_ASSERT(r, 0 == count); | 37 REPORTER_ASSERT(r, 0 == count); |
40 | 38 |
41 // Force the generation ID to be recalculated, then add a listener. | 39 // Force the generation ID to be recalculated, then add a listener. |
42 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID()); | 40 REPORTER_ASSERT(r, 0 != pixelRef.getGenerationID()); |
43 pixelRef->addGenIDChangeListener(SkNEW_ARGS(TestListener, (&count))); | 41 pixelRef.addGenIDChangeListener(SkNEW_ARGS(TestListener, (&count))); |
44 pixelRef->notifyPixelsChanged(); | 42 pixelRef.notifyPixelsChanged(); |
45 REPORTER_ASSERT(r, 1 == count); | 43 REPORTER_ASSERT(r, 1 == count); |
46 | 44 |
47 // Quick check that NULL is safe. | 45 // Quick check that NULL is safe. |
48 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID()); | 46 REPORTER_ASSERT(r, 0 != pixelRef.getGenerationID()); |
49 pixelRef->addGenIDChangeListener(NULL); | 47 pixelRef.addGenIDChangeListener(NULL); |
50 pixelRef->notifyPixelsChanged(); | 48 pixelRef.notifyPixelsChanged(); |
51 } | 49 } |
OLD | NEW |