commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "SkBitmap.h" |
| 9 | #include "SkCanvas.h" |
| 10 | #include "SkData.h" |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 11 | #include "SkDiscardableMemoryPool.h" |
msarett | 7f7ec20 | 2016-03-01 12:12:27 -0800 | [diff] [blame] | 12 | #include "SkImage.h" |
| 13 | #include "SkImageEncoder.h" |
Mike Reed | 7614794 | 2016-10-25 09:57:13 -0400 | [diff] [blame] | 14 | #include "SkImageGenerator.h" |
Mike Reed | 185130c | 2017-02-15 15:14:16 -0500 | [diff] [blame] | 15 | #include "SkMakeUnique.h" |
reed | 011f39a | 2014-08-28 13:35:23 -0700 | [diff] [blame] | 16 | #include "SkResourceCache.h" |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 17 | #include "SkStream.h" |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 18 | #include "SkUtils.h" |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 19 | |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 20 | #include "Test.h" |
Mike Klein | 7e4e993 | 2017-09-15 11:45:32 -0400 | [diff] [blame] | 21 | #include "sk_tool_utils.h" |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 22 | |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 23 | class TestImageGenerator : public SkImageGenerator { |
| 24 | public: |
| 25 | enum TestType { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 26 | kFailGetPixels_TestType, |
| 27 | kSucceedGetPixels_TestType, |
| 28 | kLast_TestType = kSucceedGetPixels_TestType |
| 29 | }; |
| 30 | static int Width() { return 10; } |
| 31 | static int Height() { return 10; } |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 32 | // value choosen so that there is no loss when converting to to RGB565 and back |
Mike Klein | 7e4e993 | 2017-09-15 11:45:32 -0400 | [diff] [blame] | 33 | static SkColor Color() { return sk_tool_utils::color_to_565(0xffaabbcc); } |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 34 | static SkPMColor PMColor() { return SkPreMultiplyColor(Color()); } |
| 35 | |
| 36 | TestImageGenerator(TestType type, skiatest::Reporter* reporter, |
| 37 | SkColorType colorType = kN32_SkColorType) |
| 38 | : INHERITED(GetMyInfo(colorType)), fType(type), fReporter(reporter) { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 39 | SkASSERT((fType <= kLast_TestType) && (fType >= 0)); |
| 40 | } |
Brian Salomon | d3b6597 | 2017-03-22 12:05:03 -0400 | [diff] [blame] | 41 | ~TestImageGenerator() override {} |
commit-bot@chromium.org | 00f8d6c | 2014-05-29 15:57:20 +0000 | [diff] [blame] | 42 | |
| 43 | protected: |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 44 | static SkImageInfo GetMyInfo(SkColorType colorType) { |
| 45 | return SkImageInfo::Make(TestImageGenerator::Width(), TestImageGenerator::Height(), |
| 46 | colorType, kOpaque_SkAlphaType); |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 47 | } |
| 48 | |
scroggo | 5315fd4 | 2015-07-09 09:08:00 -0700 | [diff] [blame] | 49 | bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, |
Matt Sarett | ebb1b5c | 2017-05-12 11:41:27 -0400 | [diff] [blame] | 50 | const Options& options) override { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 51 | REPORTER_ASSERT(fReporter, pixels != nullptr); |
scroggo | 0864908 | 2015-02-13 11:13:34 -0800 | [diff] [blame] | 52 | REPORTER_ASSERT(fReporter, rowBytes >= info.minRowBytes()); |
| 53 | if (fType != kSucceedGetPixels_TestType) { |
scroggo | 5315fd4 | 2015-07-09 09:08:00 -0700 | [diff] [blame] | 54 | return false; |
scroggo | 0864908 | 2015-02-13 11:13:34 -0800 | [diff] [blame] | 55 | } |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 56 | if (info.colorType() != kN32_SkColorType && info.colorType() != getInfo().colorType()) { |
scroggo | 5315fd4 | 2015-07-09 09:08:00 -0700 | [diff] [blame] | 57 | return false; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 58 | } |
| 59 | char* bytePtr = static_cast<char*>(pixels); |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 60 | switch (info.colorType()) { |
| 61 | case kN32_SkColorType: |
| 62 | for (int y = 0; y < info.height(); ++y) { |
| 63 | sk_memset32((uint32_t*)bytePtr, |
| 64 | TestImageGenerator::PMColor(), info.width()); |
| 65 | bytePtr += rowBytes; |
| 66 | } |
| 67 | break; |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 68 | case kRGB_565_SkColorType: |
| 69 | for (int y = 0; y < info.height(); ++y) { |
| 70 | sk_memset16((uint16_t*)bytePtr, |
| 71 | SkPixel32ToPixel16(TestImageGenerator::PMColor()), info.width()); |
| 72 | bytePtr += rowBytes; |
| 73 | } |
| 74 | break; |
| 75 | default: |
| 76 | return false; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 77 | } |
scroggo | 5315fd4 | 2015-07-09 09:08:00 -0700 | [diff] [blame] | 78 | return true; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 79 | } |
halcanary@google.com | 3d50ea1 | 2014-01-02 13:15:13 +0000 | [diff] [blame] | 80 | |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 81 | private: |
| 82 | const TestType fType; |
| 83 | skiatest::Reporter* const fReporter; |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 84 | |
| 85 | typedef SkImageGenerator INHERITED; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 86 | }; |
halcanary@google.com | 3d50ea1 | 2014-01-02 13:15:13 +0000 | [diff] [blame] | 87 | |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 88 | //////////////////////////////////////////////////////////////////////////////// |
| 89 | |
| 90 | DEF_TEST(Image_NewFromGenerator, r) { |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 91 | const TestImageGenerator::TestType testTypes[] = { |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 92 | TestImageGenerator::kFailGetPixels_TestType, |
| 93 | TestImageGenerator::kSucceedGetPixels_TestType, |
| 94 | }; |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 95 | const SkColorType testColorTypes[] = { |
| 96 | kN32_SkColorType, |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 97 | kRGB_565_SkColorType |
| 98 | }; |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 99 | for (size_t i = 0; i < SK_ARRAY_COUNT(testTypes); ++i) { |
| 100 | TestImageGenerator::TestType test = testTypes[i]; |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 101 | for (const SkColorType testColorType : testColorTypes) { |
Mike Reed | 185130c | 2017-02-15 15:14:16 -0500 | [diff] [blame] | 102 | auto gen = skstd::make_unique<TestImageGenerator>(test, r, testColorType); |
| 103 | sk_sp<SkImage> image(SkImage::MakeFromGenerator(std::move(gen))); |
reed | 9ce9d67 | 2016-03-17 10:51:11 -0700 | [diff] [blame] | 104 | if (nullptr == image) { |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 105 | ERRORF(r, "SkImage::NewFromGenerator unexpecedly failed [" |
| 106 | SK_SIZE_T_SPECIFIER "]", i); |
| 107 | continue; |
| 108 | } |
| 109 | REPORTER_ASSERT(r, TestImageGenerator::Width() == image->width()); |
| 110 | REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height()); |
| 111 | REPORTER_ASSERT(r, image->isLazyGenerated()); |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 112 | |
aleksandar.stojiljkovic | 07e2692 | 2015-11-10 04:55:15 -0800 | [diff] [blame] | 113 | SkBitmap bitmap; |
| 114 | bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height()); |
| 115 | SkCanvas canvas(bitmap); |
| 116 | const SkColor kDefaultColor = 0xffabcdef; |
| 117 | canvas.clear(kDefaultColor); |
| 118 | canvas.drawImage(image, 0, 0, nullptr); |
| 119 | if (TestImageGenerator::kSucceedGetPixels_TestType == test) { |
| 120 | REPORTER_ASSERT( |
| 121 | r, TestImageGenerator::Color() == bitmap.getColor(0, 0)); |
| 122 | } |
| 123 | else { |
| 124 | REPORTER_ASSERT(r, kDefaultColor == bitmap.getColor(0, 0)); |
| 125 | } |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | } |