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" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 // now install our looper, which will draw, since it internally translates | 81 // now install our looper, which will draw, since it internally translates |
82 // to the left. The test is to ensure that canvas' quickReject machinary | 82 // to the left. The test is to ensure that canvas' quickReject machinary |
83 // allows us through, even though sans-looper we would look like we should | 83 // allows us through, even though sans-looper we would look like we should |
84 // be clipped out. | 84 // be clipped out. |
85 paint.setLooper(new TestLooper)->unref(); | 85 paint.setLooper(new TestLooper)->unref(); |
86 canvas.drawBitmap(src, SkIntToScalar(-10), 0, &paint); | 86 canvas.drawBitmap(src, SkIntToScalar(-10), 0, &paint); |
87 REPORTER_ASSERT(reporter, 0xFFFFFFFF == *dst.getAddr32(5, 5)); | 87 REPORTER_ASSERT(reporter, 0xFFFFFFFF == *dst.getAddr32(5, 5)); |
88 } | 88 } |
89 | 89 |
| 90 static void test_layers(skiatest::Reporter* reporter) { |
| 91 SkCanvas canvas(100, 100); |
| 92 |
| 93 SkRect r = SkRect::MakeWH(10, 10); |
| 94 REPORTER_ASSERT(reporter, false == canvas.quickReject(r)); |
| 95 |
| 96 r.offset(300, 300); |
| 97 REPORTER_ASSERT(reporter, true == canvas.quickReject(r)); |
| 98 |
| 99 // Test that saveLayer updates quickReject |
| 100 SkRect bounds = SkRect::MakeLTRB(50, 50, 70, 70); |
| 101 canvas.saveLayer(&bounds, NULL); |
| 102 REPORTER_ASSERT(reporter, true == canvas.quickReject(SkRect::MakeWH(10, 10))
); |
| 103 REPORTER_ASSERT(reporter, false == canvas.quickReject(SkRect::MakeWH(60, 60)
)); |
| 104 } |
| 105 |
90 DEF_TEST(QuickReject, reporter) { | 106 DEF_TEST(QuickReject, reporter) { |
91 test_drawBitmap(reporter); | 107 test_drawBitmap(reporter); |
| 108 test_layers(reporter); |
92 } | 109 } |
OLD | NEW |