| 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() { } | 23 FailureImageGenerator() { } |
| 24 virtual ~FailureImageGenerator() { } | 24 virtual ~FailureImageGenerator() { } |
| 25 virtual bool getInfo(SkImageInfo* info) SK_OVERRIDE { | 25 |
| 26 protected: |
| 27 virtual bool onGetInfo(SkImageInfo* info) SK_OVERRIDE { |
| 26 info->fWidth = 100; | 28 info->fWidth = 100; |
| 27 info->fHeight = 100; | 29 info->fHeight = 100; |
| 28 info->fColorType = kN32_SkColorType; | 30 info->fColorType = kN32_SkColorType; |
| 29 info->fAlphaType = kPremul_SkAlphaType; | 31 info->fAlphaType = kPremul_SkAlphaType; |
| 30 return true; | 32 return true; |
| 31 } | 33 } |
| 32 virtual bool getPixels(const SkImageInfo& info, | 34 // default onGetPixels() returns false, which is what we want. |
| 33 void* pixels, | |
| 34 size_t rowBytes) SK_OVERRIDE { | |
| 35 // this will deliberately return false if they are asking us | |
| 36 // to decode into pixels. | |
| 37 return false; | |
| 38 } | |
| 39 }; | 35 }; |
| 40 | 36 |
| 41 // crbug.com/295895 | 37 // crbug.com/295895 |
| 42 // Crashing in skia when a pixelref fails in lockPixels | 38 // Crashing in skia when a pixelref fails in lockPixels |
| 43 // | 39 // |
| 44 static void test_faulty_pixelref(skiatest::Reporter* reporter) { | 40 static void test_faulty_pixelref(skiatest::Reporter* reporter) { |
| 45 // need a cache, but don't expect to use it, so the budget is not critical | 41 // need a cache, but don't expect to use it, so the budget is not critical |
| 46 SkAutoTUnref<SkDiscardableMemoryPool> pool( | 42 SkAutoTUnref<SkDiscardableMemoryPool> pool( |
| 47 SkDiscardableMemoryPool::Create(10 * 1000, NULL)); | 43 SkDiscardableMemoryPool::Create(10 * 1000, NULL)); |
| 48 SkBitmap bm; | 44 SkBitmap bm; |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 310 |
| 315 // ensure that we draw nothing if srcR does not intersect the bitmap | 311 // ensure that we draw nothing if srcR does not intersect the bitmap |
| 316 REPORTER_ASSERT(reporter, check_for_all_zeros(dst)); | 312 REPORTER_ASSERT(reporter, check_for_all_zeros(dst)); |
| 317 | 313 |
| 318 test_nan_antihair(); | 314 test_nan_antihair(); |
| 319 test_giantrepeat_crbug118018(reporter); | 315 test_giantrepeat_crbug118018(reporter); |
| 320 | 316 |
| 321 test_treatAsSprite(reporter); | 317 test_treatAsSprite(reporter); |
| 322 test_faulty_pixelref(reporter); | 318 test_faulty_pixelref(reporter); |
| 323 } | 319 } |
| OLD | NEW |