| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 SkCanvas canvas(100, 100); | 91 SkCanvas canvas(100, 100); |
| 92 | 92 |
| 93 SkRect r = SkRect::MakeWH(10, 10); | 93 SkRect r = SkRect::MakeWH(10, 10); |
| 94 REPORTER_ASSERT(reporter, false == canvas.quickReject(r)); | 94 REPORTER_ASSERT(reporter, false == canvas.quickReject(r)); |
| 95 | 95 |
| 96 r.offset(300, 300); | 96 r.offset(300, 300); |
| 97 REPORTER_ASSERT(reporter, true == canvas.quickReject(r)); | 97 REPORTER_ASSERT(reporter, true == canvas.quickReject(r)); |
| 98 | 98 |
| 99 // Test that saveLayer updates quickReject | 99 // Test that saveLayer updates quickReject |
| 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, nullptr); |
| 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 |