| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 "SkSpecialImage.h" | 9 #include "SkSpecialImage.h" |
| 10 #include "SkSpecialSurface.h" | 10 #include "SkSpecialSurface.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeFromBitmap(subset, bm)); | 72 sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeFromBitmap(subset, bm)); |
| 73 | 73 |
| 74 test_surface(surf, reporter, kPad); | 74 test_surface(surf, reporter, kPad); |
| 75 | 75 |
| 76 // TODO: check that the clear didn't escape the active region | 76 // TODO: check that the clear didn't escape the active region |
| 77 } | 77 } |
| 78 | 78 |
| 79 #if SK_SUPPORT_GPU | 79 #if SK_SUPPORT_GPU |
| 80 | 80 |
| 81 DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SpecialSurface_Gpu1, reporter, ctxInfo) { | 81 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SpecialSurface_Gpu1, reporter, ctxInfo) { |
| 82 sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeRenderTarget(ctxInfo.grCo
ntext(), | 82 sk_sp<SkSpecialSurface> surf(SkSpecialSurface::MakeRenderTarget(ctxInfo.grCo
ntext(), |
| 83 kSmallerSize
, kSmallerSize, | 83 kSmallerSize
, kSmallerSize, |
| 84 kSkia8888_Gr
PixelConfig)); | 84 kSkia8888_Gr
PixelConfig)); |
| 85 | 85 |
| 86 test_surface(surf, reporter, 0); | 86 test_surface(surf, reporter, 0); |
| 87 } | 87 } |
| 88 | 88 |
| 89 #endif | 89 #endif |
| OLD | NEW |