| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 #include "cc/playback/image_hijack_canvas.h" | |
| 5 | |
| 6 #include "cc/test/skia_common.h" | |
| 7 #include "cc/tiles/image_decode_cache.h" | |
| 8 #include "testing/gmock/include/gmock/gmock.h" | |
| 9 #include "testing/gtest/include/gtest/gtest.h" | |
| 10 #include "third_party/skia/include/core/SkBitmap.h" | |
| 11 #include "third_party/skia/include/core/SkImage.h" | |
| 12 #include "third_party/skia/include/core/SkPath.h" | |
| 13 | |
| 14 namespace cc { | |
| 15 namespace { | |
| 16 | |
| 17 class MockImageDecodeCache : public ImageDecodeCache { | |
| 18 public: | |
| 19 MOCK_METHOD3(GetTaskForImageAndRef, | |
| 20 bool(const DrawImage& image, | |
| 21 const TracingInfo& tracing_info, | |
| 22 scoped_refptr<TileTask>* task)); | |
| 23 MOCK_METHOD1(UnrefImage, void(const DrawImage& image)); | |
| 24 MOCK_METHOD1(GetDecodedImageForDraw, | |
| 25 DecodedDrawImage(const DrawImage& image)); | |
| 26 MOCK_METHOD2(DrawWithImageFinished, | |
| 27 void(const DrawImage& image, | |
| 28 const DecodedDrawImage& decoded_image)); | |
| 29 MOCK_METHOD0(ReduceCacheUsage, void()); | |
| 30 MOCK_METHOD1(SetShouldAggressivelyFreeResources, | |
| 31 void(bool aggressively_free_resources)); | |
| 32 MOCK_METHOD2(GetOutOfRasterDecodeTaskForImageAndRef, | |
| 33 bool(const DrawImage& image, scoped_refptr<TileTask>* task)); | |
| 34 }; | |
| 35 | |
| 36 TEST(ImageHijackCanvasTest, NonLazyImagesSkipped) { | |
| 37 // Use a strict mock so that if *any* ImageDecodeCache methods are called, we | |
| 38 // will hit an error. | |
| 39 testing::StrictMock<MockImageDecodeCache> image_decode_cache; | |
| 40 ImageIdFlatSet images_to_skip; | |
| 41 ImageHijackCanvas canvas(100, 100, &image_decode_cache, &images_to_skip); | |
| 42 | |
| 43 // Use an SkBitmap backed image to ensure that the image is not | |
| 44 // lazy-generated. | |
| 45 SkBitmap bitmap; | |
| 46 bitmap.allocN32Pixels(10, 10, true); | |
| 47 sk_sp<SkImage> image = SkImage::MakeFromBitmap(bitmap); | |
| 48 | |
| 49 SkPaint paint; | |
| 50 canvas.drawImage(image, 0, 0, &paint); | |
| 51 canvas.drawImageRect(image, SkRect::MakeXYWH(0, 0, 10, 10), | |
| 52 SkRect::MakeXYWH(10, 10, 10, 10), &paint); | |
| 53 | |
| 54 SkPaint image_paint; | |
| 55 image_paint.setShader( | |
| 56 image->makeShader(SkShader::kClamp_TileMode, SkShader::kClamp_TileMode)); | |
| 57 SkRect paint_rect = SkRect::MakeXYWH(0, 0, 100, 100); | |
| 58 canvas.drawRect(paint_rect, image_paint); | |
| 59 SkPath path; | |
| 60 path.addRect(paint_rect, SkPath::kCW_Direction); | |
| 61 canvas.drawPath(path, image_paint); | |
| 62 canvas.drawOval(paint_rect, image_paint); | |
| 63 canvas.drawArc(paint_rect, 0, 40, true, image_paint); | |
| 64 canvas.drawRRect(SkRRect::MakeRect(paint_rect), image_paint); | |
| 65 } | |
| 66 | |
| 67 TEST(ImageHijackCanvasTest, ImagesToSkipAreSkipped) { | |
| 68 // Use a strict mock so that if *any* ImageDecodeCache methods are called, we | |
| 69 // will hit an error. | |
| 70 testing::StrictMock<MockImageDecodeCache> image_decode_cache; | |
| 71 ImageIdFlatSet images_to_skip; | |
| 72 sk_sp<SkImage> image = CreateDiscardableImage(gfx::Size(10, 10)); | |
| 73 images_to_skip.insert(image->uniqueID()); | |
| 74 ImageHijackCanvas canvas(100, 100, &image_decode_cache, &images_to_skip); | |
| 75 | |
| 76 SkPaint paint; | |
| 77 canvas.drawImage(image, 0, 0, &paint); | |
| 78 canvas.drawImageRect(image, SkRect::MakeXYWH(0, 0, 10, 10), | |
| 79 SkRect::MakeXYWH(10, 10, 10, 10), &paint); | |
| 80 paint.setShader(image->makeShader(SkShader::kClamp_TileMode, | |
| 81 SkShader::kClamp_TileMode, nullptr)); | |
| 82 canvas.drawRect(SkRect::MakeXYWH(10, 10, 10, 10), paint); | |
| 83 } | |
| 84 | |
| 85 } // namespace | |
| 86 | |
| 87 } // namespace cc | |
| OLD | NEW |