| 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 "SkBlurMask.h" | 8 #include "SkBlurMask.h" |
| 9 #include "SkBlurMaskFilter.h" | 9 #include "SkBlurMaskFilter.h" |
| 10 #include "SkBlurDrawLooper.h" | 10 #include "SkBlurDrawLooper.h" |
| 11 #include "SkLayerDrawLooper.h" |
| 12 #include "SkEmbossMaskFilter.h" |
| 11 #include "SkCanvas.h" | 13 #include "SkCanvas.h" |
| 12 #include "SkEmbossMaskFilter.h" | |
| 13 #include "SkLayerDrawLooper.h" | |
| 14 #include "SkMath.h" | 14 #include "SkMath.h" |
| 15 #include "SkPaint.h" | 15 #include "SkPaint.h" |
| 16 #include "SkPath.h" | |
| 17 #include "Test.h" | 16 #include "Test.h" |
| 18 | 17 |
| 19 #if SK_SUPPORT_GPU | 18 #if SK_SUPPORT_GPU |
| 20 #include "GrContextFactory.h" | 19 #include "GrContextFactory.h" |
| 21 #include "SkGpuDevice.h" | 20 #include "SkGpuDevice.h" |
| 22 #endif | 21 #endif |
| 23 | 22 |
| 24 #define WRITE_CSV 0 | 23 #define WRITE_CSV 0 |
| 25 | 24 |
| 26 /////////////////////////////////////////////////////////////////////////////// | 25 /////////////////////////////////////////////////////////////////////////////// |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 } | 564 } |
| 566 } | 565 } |
| 567 | 566 |
| 568 ////////////////////////////////////////////////////////////////////////////////
/////////// | 567 ////////////////////////////////////////////////////////////////////////////////
/////////// |
| 569 | 568 |
| 570 DEF_GPUTEST(Blur, reporter, factory) { | 569 DEF_GPUTEST(Blur, reporter, factory) { |
| 571 test_blur_drawing(reporter); | 570 test_blur_drawing(reporter); |
| 572 test_sigma_range(reporter, factory); | 571 test_sigma_range(reporter, factory); |
| 573 test_asABlur(reporter); | 572 test_asABlur(reporter); |
| 574 } | 573 } |
| OLD | NEW |