| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
| 9 #include "SkDrawLooper.h" | 9 #include "SkDrawLooper.h" |
| 10 #include "SkTypes.h" | 10 #include "SkTypes.h" |
| 11 #include "Test.h" | 11 #include "Test.h" |
| 12 | 12 |
| 13 /* | 13 /* |
| 14 * Subclass of looper that just draws once, with an offset in X. | 14 * Subclass of looper that just draws once, with an offset in X. |
| 15 */ | 15 */ |
| 16 class TestLooper : public SkDrawLooper { | 16 class TestLooper : public SkDrawLooper { |
| 17 public: | 17 public: |
| 18 | 18 |
| 19 SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const overrid
e { | 19 SkDrawLooper::Context* createContext(SkCanvas*, void* storage) const overrid
e { |
| 20 return SkNEW_PLACEMENT(storage, TestDrawLooperContext); | 20 return new (storage) TestDrawLooperContext; |
| 21 } | 21 } |
| 22 | 22 |
| 23 size_t contextSize() const override { return sizeof(TestDrawLooperContext);
} | 23 size_t contextSize() const override { return sizeof(TestDrawLooperContext);
} |
| 24 | 24 |
| 25 #ifndef SK_IGNORE_TO_STRING | 25 #ifndef SK_IGNORE_TO_STRING |
| 26 void toString(SkString* str) const override { | 26 void toString(SkString* str) const override { |
| 27 str->append("TestLooper:"); | 27 str->append("TestLooper:"); |
| 28 } | 28 } |
| 29 #endif | 29 #endif |
| 30 | 30 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 42 canvas->translate(SkIntToScalar(10), 0); | 42 canvas->translate(SkIntToScalar(10), 0); |
| 43 return true; | 43 return true; |
| 44 } | 44 } |
| 45 return false; | 45 return false; |
| 46 } | 46 } |
| 47 private: | 47 private: |
| 48 bool fOnce; | 48 bool fOnce; |
| 49 }; | 49 }; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 SkFlattenable* TestLooper::CreateProc(SkReadBuffer&) { return SkNEW(TestLooper);
} | 52 SkFlattenable* TestLooper::CreateProc(SkReadBuffer&) { return new TestLooper; } |
| 53 | 53 |
| 54 static void test_drawBitmap(skiatest::Reporter* reporter) { | 54 static void test_drawBitmap(skiatest::Reporter* reporter) { |
| 55 SkBitmap src; | 55 SkBitmap src; |
| 56 src.allocN32Pixels(10, 10); | 56 src.allocN32Pixels(10, 10); |
| 57 src.eraseColor(SK_ColorWHITE); | 57 src.eraseColor(SK_ColorWHITE); |
| 58 | 58 |
| 59 SkBitmap dst; | 59 SkBitmap dst; |
| 60 dst.allocN32Pixels(10, 10); | 60 dst.allocN32Pixels(10, 10); |
| 61 dst.eraseColor(SK_ColorTRANSPARENT); | 61 dst.eraseColor(SK_ColorTRANSPARENT); |
| 62 | 62 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 SkRect bounds = SkRect::MakeLTRB(50, 50, 70, 70); | 100 SkRect bounds = SkRect::MakeLTRB(50, 50, 70, 70); |
| 101 canvas.saveLayer(&bounds, NULL); | 101 canvas.saveLayer(&bounds, NULL); |
| 102 REPORTER_ASSERT(reporter, true == canvas.quickReject(SkRect::MakeWH(10, 10))
); | 102 REPORTER_ASSERT(reporter, true == canvas.quickReject(SkRect::MakeWH(10, 10))
); |
| 103 REPORTER_ASSERT(reporter, false == canvas.quickReject(SkRect::MakeWH(60, 60)
)); | 103 REPORTER_ASSERT(reporter, false == canvas.quickReject(SkRect::MakeWH(60, 60)
)); |
| 104 } | 104 } |
| 105 | 105 |
| 106 DEF_TEST(QuickReject, reporter) { | 106 DEF_TEST(QuickReject, reporter) { |
| 107 test_drawBitmap(reporter); | 107 test_drawBitmap(reporter); |
| 108 test_layers(reporter); | 108 test_layers(reporter); |
| 109 } | 109 } |
| OLD | NEW |