| 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 "SkBitmap.h" | 8 #include "SkBitmap.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkData.h" | 10 #include "SkData.h" |
| 11 #include "SkDiscardableMemoryPool.h" | 11 #include "SkDiscardableMemoryPool.h" |
| 12 #include "SkImageGeneratorPriv.h" | 12 #include "SkImageGeneratorPriv.h" |
| 13 #include "SkMatrixUtils.h" | 13 #include "SkMatrixUtils.h" |
| 14 #include "SkPaint.h" | 14 #include "SkPaint.h" |
| 15 #include "SkRandom.h" | 15 #include "SkRandom.h" |
| 16 #include "SkShader.h" | 16 #include "SkShader.h" |
| 17 #include "SkSurface.h" | 17 #include "SkSurface.h" |
| 18 #include "Test.h" | 18 #include "Test.h" |
| 19 | 19 |
| 20 // A BitmapFactory that always fails when asked to return pixels. | 20 // A BitmapFactory that always fails when asked to return pixels. |
| 21 class FailureImageGenerator : public SkImageGenerator { | 21 class FailureImageGenerator : public SkImageGenerator { |
| 22 public: | 22 public: |
| 23 FailureImageGenerator() : SkImageGenerator(SkImageInfo::MakeN32Premul(100, 1
00)) {} | 23 FailureImageGenerator() : SkImageGenerator(SkImageInfo::MakeN32Premul(100, 1
00)) {} |
| 24 protected: | 24 protected: |
| 25 #ifdef SK_SUPPORT_LEGACY_BOOL_ONGETINFO | |
| 26 bool onGetInfo(SkImageInfo* info) override { | |
| 27 *info = SkImageInfo::MakeN32Premul(100, 100); | |
| 28 return true; | |
| 29 } | |
| 30 #endif | |
| 31 // default onGetPixels() returns kUnimplemented, which is what we want. | 25 // default onGetPixels() returns kUnimplemented, which is what we want. |
| 32 }; | 26 }; |
| 33 | 27 |
| 34 // crbug.com/295895 | 28 // crbug.com/295895 |
| 35 // Crashing in skia when a pixelref fails in lockPixels | 29 // Crashing in skia when a pixelref fails in lockPixels |
| 36 // | 30 // |
| 37 static void test_faulty_pixelref(skiatest::Reporter* reporter) { | 31 static void test_faulty_pixelref(skiatest::Reporter* reporter) { |
| 38 // need a cache, but don't expect to use it, so the budget is not critical | 32 // need a cache, but don't expect to use it, so the budget is not critical |
| 39 SkAutoTUnref<SkDiscardableMemoryPool> pool( | 33 SkAutoTUnref<SkDiscardableMemoryPool> pool( |
| 40 SkDiscardableMemoryPool::Create(10 * 1000, NULL)); | 34 SkDiscardableMemoryPool::Create(10 * 1000, NULL)); |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 | 303 |
| 310 // ensure that we draw nothing if srcR does not intersect the bitmap | 304 // ensure that we draw nothing if srcR does not intersect the bitmap |
| 311 REPORTER_ASSERT(reporter, check_for_all_zeros(dst)); | 305 REPORTER_ASSERT(reporter, check_for_all_zeros(dst)); |
| 312 | 306 |
| 313 test_nan_antihair(); | 307 test_nan_antihair(); |
| 314 test_giantrepeat_crbug118018(reporter); | 308 test_giantrepeat_crbug118018(reporter); |
| 315 | 309 |
| 316 test_treatAsSprite(reporter); | 310 test_treatAsSprite(reporter); |
| 317 test_faulty_pixelref(reporter); | 311 test_faulty_pixelref(reporter); |
| 318 } | 312 } |
| OLD | NEW |