2013-10-29 19:55:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkBitmap.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkData.h"
|
2013-12-05 18:31:42 +00:00
|
|
|
#include "SkDiscardableMemoryPool.h"
|
2013-10-29 19:55:00 +00:00
|
|
|
#include "SkImageDecoder.h"
|
2014-05-27 14:14:22 +00:00
|
|
|
#include "SkImageGeneratorPriv.h"
|
2014-08-28 20:35:23 +00:00
|
|
|
#include "SkResourceCache.h"
|
2013-10-29 19:55:00 +00:00
|
|
|
#include "SkStream.h"
|
2013-12-05 18:31:42 +00:00
|
|
|
#include "SkUtils.h"
|
2013-11-06 10:08:30 +00:00
|
|
|
|
2013-10-29 19:55:00 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill this bitmap with some color.
|
|
|
|
*/
|
|
|
|
static void make_test_image(SkBitmap* bm) {
|
2014-06-10 02:52:07 +00:00
|
|
|
const int W = 50, H = 50;
|
|
|
|
bm->allocN32Pixels(W, H);
|
2013-10-29 19:55:00 +00:00
|
|
|
bm->eraseColor(SK_ColorBLACK);
|
|
|
|
SkCanvas canvas(*bm);
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor(SK_ColorBLUE);
|
|
|
|
canvas.drawRectCoords(0, 0, SkIntToScalar(W/2),
|
|
|
|
SkIntToScalar(H/2), paint);
|
|
|
|
paint.setColor(SK_ColorWHITE);
|
|
|
|
canvas.drawRectCoords(SkIntToScalar(W/2), SkIntToScalar(H/2),
|
|
|
|
SkIntToScalar(W), SkIntToScalar(H), paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* encode this bitmap into some data via SkImageEncoder
|
|
|
|
*/
|
|
|
|
static SkData* create_data_from_bitmap(const SkBitmap& bm,
|
|
|
|
SkImageEncoder::Type type) {
|
|
|
|
SkDynamicMemoryWStream stream;
|
|
|
|
if (SkImageEncoder::EncodeStream(&stream, bm, type, 100)) {
|
|
|
|
return stream.copyToData();
|
|
|
|
}
|
2015-08-27 14:41:13 +00:00
|
|
|
return nullptr;
|
2013-10-29 19:55:00 +00:00
|
|
|
}
|
|
|
|
|
2013-12-05 18:31:42 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2013-10-29 19:55:00 +00:00
|
|
|
|
|
|
|
static void compare_bitmaps(skiatest::Reporter* reporter,
|
|
|
|
const SkBitmap& b1, const SkBitmap& b2,
|
|
|
|
bool pixelPerfect = true) {
|
|
|
|
REPORTER_ASSERT(reporter, b1.empty() == b2.empty());
|
|
|
|
REPORTER_ASSERT(reporter, b1.width() == b2.width());
|
|
|
|
REPORTER_ASSERT(reporter, b1.height() == b2.height());
|
|
|
|
REPORTER_ASSERT(reporter, b1.isNull() == b2.isNull());
|
|
|
|
SkAutoLockPixels autoLockPixels1(b1);
|
|
|
|
SkAutoLockPixels autoLockPixels2(b2);
|
|
|
|
REPORTER_ASSERT(reporter, b1.isNull() == b2.isNull());
|
|
|
|
if (b1.isNull() || b1.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-05 20:34:00 +00:00
|
|
|
REPORTER_ASSERT(reporter, b1.getPixels());
|
|
|
|
REPORTER_ASSERT(reporter, b2.getPixels());
|
2013-10-29 19:55:00 +00:00
|
|
|
if ((!(b1.getPixels())) || (!(b2.getPixels()))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((b1.width() != b2.width()) ||
|
|
|
|
(b1.height() != b2.height())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!pixelPerfect) {
|
|
|
|
return;
|
|
|
|
}
|
2013-11-06 10:08:30 +00:00
|
|
|
|
2013-10-29 19:55:00 +00:00
|
|
|
int pixelErrors = 0;
|
|
|
|
for (int y = 0; y < b2.height(); ++y) {
|
|
|
|
for (int x = 0; x < b2.width(); ++x) {
|
|
|
|
if (b1.getColor(x, y) != b2.getColor(x, y)) {
|
|
|
|
++pixelErrors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(reporter, 0 == pixelErrors);
|
|
|
|
}
|
|
|
|
|
2013-12-05 14:00:03 +00:00
|
|
|
typedef bool (*InstallEncoded)(SkData* encoded, SkBitmap* dst);
|
|
|
|
|
2013-10-29 19:55:00 +00:00
|
|
|
/**
|
2013-12-05 14:00:03 +00:00
|
|
|
This function tests three differently encoded images against the
|
|
|
|
original bitmap */
|
2013-11-06 10:08:30 +00:00
|
|
|
static void test_three_encodings(skiatest::Reporter* reporter,
|
2013-12-05 14:00:03 +00:00
|
|
|
InstallEncoded install) {
|
2013-10-29 19:55:00 +00:00
|
|
|
SkBitmap original;
|
|
|
|
make_test_image(&original);
|
2013-11-06 10:08:30 +00:00
|
|
|
REPORTER_ASSERT(reporter, !original.empty());
|
|
|
|
REPORTER_ASSERT(reporter, !original.isNull());
|
|
|
|
if (original.empty() || original.isNull()) {
|
|
|
|
return;
|
|
|
|
}
|
2013-10-29 19:55:00 +00:00
|
|
|
static const SkImageEncoder::Type types[] = {
|
|
|
|
SkImageEncoder::kPNG_Type,
|
|
|
|
SkImageEncoder::kJPEG_Type,
|
|
|
|
SkImageEncoder::kWEBP_Type
|
|
|
|
};
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(types); i++) {
|
|
|
|
SkImageEncoder::Type type = types[i];
|
|
|
|
SkAutoDataUnref encoded(create_data_from_bitmap(original, type));
|
2015-08-27 14:41:13 +00:00
|
|
|
REPORTER_ASSERT(reporter, encoded.get() != nullptr);
|
|
|
|
if (nullptr == encoded.get()) {
|
2013-12-05 14:00:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
SkBitmap lazy;
|
|
|
|
bool installSuccess = install(encoded.get(), &lazy);
|
|
|
|
REPORTER_ASSERT(reporter, installSuccess);
|
|
|
|
if (!installSuccess) {
|
|
|
|
continue;
|
2013-10-29 19:55:00 +00:00
|
|
|
}
|
2015-08-27 14:41:13 +00:00
|
|
|
REPORTER_ASSERT(reporter, nullptr == lazy.getPixels());
|
2013-12-05 14:00:03 +00:00
|
|
|
{
|
|
|
|
SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
|
2014-09-05 20:34:00 +00:00
|
|
|
REPORTER_ASSERT(reporter, lazy.getPixels());
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == lazy.getPixels()) {
|
2013-12-05 14:00:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// pixels should be gone!
|
2015-08-27 14:41:13 +00:00
|
|
|
REPORTER_ASSERT(reporter, nullptr == lazy.getPixels());
|
2013-12-05 14:00:03 +00:00
|
|
|
{
|
|
|
|
SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
|
2014-09-05 20:34:00 +00:00
|
|
|
REPORTER_ASSERT(reporter, lazy.getPixels());
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == lazy.getPixels()) {
|
2013-12-05 14:00:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool comparePixels = (SkImageEncoder::kPNG_Type == type);
|
|
|
|
compare_bitmaps(reporter, original, lazy, comparePixels);
|
2013-11-06 10:08:30 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-29 19:55:00 +00:00
|
|
|
|
2013-12-05 14:00:03 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2013-12-05 18:31:42 +00:00
|
|
|
static bool install_skDiscardablePixelRef(SkData* encoded, SkBitmap* dst) {
|
|
|
|
// Use system-default discardable memory.
|
2015-01-08 02:04:45 +00:00
|
|
|
return SkInstallDiscardablePixelRef(encoded, dst);
|
2013-11-06 10:08:30 +00:00
|
|
|
}
|
2013-10-29 19:55:00 +00:00
|
|
|
|
2013-12-05 14:00:03 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2013-11-06 10:08:30 +00:00
|
|
|
/**
|
2015-09-24 07:21:20 +00:00
|
|
|
* This checks to see that SkDiscardablePixelRef works as advertised with a
|
2013-12-05 18:31:42 +00:00
|
|
|
* SkDecodingImageGenerator.
|
2013-11-06 10:08:30 +00:00
|
|
|
*/
|
2013-12-05 18:31:42 +00:00
|
|
|
DEF_TEST(DecodingImageGenerator, reporter) {
|
|
|
|
test_three_encodings(reporter, install_skDiscardablePixelRef);
|
2013-10-29 19:55:00 +00:00
|
|
|
}
|
2013-11-21 15:32:08 +00:00
|
|
|
|
2013-12-05 18:31:42 +00:00
|
|
|
class TestImageGenerator : public SkImageGenerator {
|
|
|
|
public:
|
|
|
|
enum TestType {
|
|
|
|
kFailGetPixels_TestType,
|
|
|
|
kSucceedGetPixels_TestType,
|
|
|
|
kLast_TestType = kSucceedGetPixels_TestType
|
|
|
|
};
|
|
|
|
static int Width() { return 10; }
|
|
|
|
static int Height() { return 10; }
|
2014-08-18 15:27:09 +00:00
|
|
|
static uint32_t Color() { return 0xff123456; }
|
2013-12-05 18:31:42 +00:00
|
|
|
TestImageGenerator(TestType type, skiatest::Reporter* reporter)
|
2015-03-19 15:31:14 +00:00
|
|
|
: INHERITED(GetMyInfo()), fType(type), fReporter(reporter) {
|
2013-12-05 18:31:42 +00:00
|
|
|
SkASSERT((fType <= kLast_TestType) && (fType >= 0));
|
|
|
|
}
|
2014-01-21 23:39:22 +00:00
|
|
|
virtual ~TestImageGenerator() { }
|
2014-05-29 15:57:20 +00:00
|
|
|
|
|
|
|
protected:
|
2015-03-19 15:31:14 +00:00
|
|
|
static SkImageInfo GetMyInfo() {
|
|
|
|
return SkImageInfo::MakeN32(TestImageGenerator::Width(), TestImageGenerator::Height(),
|
|
|
|
kOpaque_SkAlphaType);
|
|
|
|
}
|
|
|
|
|
2015-07-09 16:08:00 +00:00
|
|
|
bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
|
|
|
|
SkPMColor ctable[], int* ctableCount) override {
|
2015-08-27 14:41:13 +00:00
|
|
|
REPORTER_ASSERT(fReporter, pixels != nullptr);
|
2015-02-13 19:13:34 +00:00
|
|
|
REPORTER_ASSERT(fReporter, rowBytes >= info.minRowBytes());
|
|
|
|
if (fType != kSucceedGetPixels_TestType) {
|
2015-07-09 16:08:00 +00:00
|
|
|
return false;
|
2015-02-13 19:13:34 +00:00
|
|
|
}
|
|
|
|
if (info.colorType() != kN32_SkColorType) {
|
2015-07-09 16:08:00 +00:00
|
|
|
return false;
|
2013-12-05 18:31:42 +00:00
|
|
|
}
|
|
|
|
char* bytePtr = static_cast<char*>(pixels);
|
2014-09-03 18:54:58 +00:00
|
|
|
for (int y = 0; y < info.height(); ++y) {
|
2013-12-05 18:31:42 +00:00
|
|
|
sk_memset32(reinterpret_cast<SkColor*>(bytePtr),
|
2014-09-03 18:54:58 +00:00
|
|
|
TestImageGenerator::Color(), info.width());
|
2013-12-05 18:31:42 +00:00
|
|
|
bytePtr += rowBytes;
|
|
|
|
}
|
2015-07-09 16:08:00 +00:00
|
|
|
return true;
|
2013-12-05 18:31:42 +00:00
|
|
|
}
|
Add Options to SkDecodingImageGenerator, simplify API.
Motivation: We want to remove redundant classes from Skia. To
that end we want to remove SkImageRef and its subclasses and
replace their uses with SkDiscardablePixelRef +
SkDecodingImageGenerator. Since Android uses SkImageRef, we need
to make sure that SkDecodingImageGenerator allows all of the
settings that Android exposes in BitmapFactory.Options.
To that end, we have created an Options struct for the
SkDecodingImageGenerator which lets the client of the generator set
sample size, dithering, and bitmap config.
We have made the SkDecodingImageGenerator constructor private
and replaced the SkDecodingImageGenerator::Install functions
with a SkDecodingImageGenerator::Create functions (one for
SkData and one for SkStream) which now take a
SkDecodingImageGenerator::Options struct.
Also added a ImageDecoderOptions test which loops through a list
of sets of options and tries them on a set of 5 small encoded
images.
Also updated several users of SkDecodingImageGenerator::Install to
follow new call signature - gm/factory.cpp, LazyDecodeBitmap.cpp,
and PictureTest.cpp, CachedDecodingPixelRefTest.cpp.
We also added a new ImprovedBitmapFactory Test which simulates the
exact function that Android will need to modify to use this,
installPixelRef() in BitmapFactory.
R=reed@google.com, scroggo@google.com
Committed: https://code.google.com/p/skia/source/detail?r=12744
Review URL: https://codereview.chromium.org/93703004
git-svn-id: http://skia.googlecode.com/svn/trunk@12855 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-01-02 13:15:13 +00:00
|
|
|
|
2013-12-05 18:31:42 +00:00
|
|
|
private:
|
|
|
|
const TestType fType;
|
|
|
|
skiatest::Reporter* const fReporter;
|
2015-03-19 15:31:14 +00:00
|
|
|
|
|
|
|
typedef SkImageGenerator INHERITED;
|
2013-12-05 18:31:42 +00:00
|
|
|
};
|
Add Options to SkDecodingImageGenerator, simplify API.
Motivation: We want to remove redundant classes from Skia. To
that end we want to remove SkImageRef and its subclasses and
replace their uses with SkDiscardablePixelRef +
SkDecodingImageGenerator. Since Android uses SkImageRef, we need
to make sure that SkDecodingImageGenerator allows all of the
settings that Android exposes in BitmapFactory.Options.
To that end, we have created an Options struct for the
SkDecodingImageGenerator which lets the client of the generator set
sample size, dithering, and bitmap config.
We have made the SkDecodingImageGenerator constructor private
and replaced the SkDecodingImageGenerator::Install functions
with a SkDecodingImageGenerator::Create functions (one for
SkData and one for SkStream) which now take a
SkDecodingImageGenerator::Options struct.
Also added a ImageDecoderOptions test which loops through a list
of sets of options and tries them on a set of 5 small encoded
images.
Also updated several users of SkDecodingImageGenerator::Install to
follow new call signature - gm/factory.cpp, LazyDecodeBitmap.cpp,
and PictureTest.cpp, CachedDecodingPixelRefTest.cpp.
We also added a new ImprovedBitmapFactory Test which simulates the
exact function that Android will need to modify to use this,
installPixelRef() in BitmapFactory.
R=reed@google.com, scroggo@google.com
Committed: https://code.google.com/p/skia/source/detail?r=12744
Review URL: https://codereview.chromium.org/93703004
git-svn-id: http://skia.googlecode.com/svn/trunk@12855 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-01-02 13:15:13 +00:00
|
|
|
|
2014-01-21 23:39:22 +00:00
|
|
|
static void check_test_image_generator_bitmap(skiatest::Reporter* reporter,
|
|
|
|
const SkBitmap& bm) {
|
2013-12-05 18:31:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, TestImageGenerator::Width() == bm.width());
|
|
|
|
REPORTER_ASSERT(reporter, TestImageGenerator::Height() == bm.height());
|
|
|
|
SkAutoLockPixels autoLockPixels(bm);
|
2014-09-05 20:34:00 +00:00
|
|
|
REPORTER_ASSERT(reporter, bm.getPixels());
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == bm.getPixels()) {
|
2013-12-05 18:31:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
int errors = 0;
|
|
|
|
for (int y = 0; y < bm.height(); ++y) {
|
|
|
|
for (int x = 0; x < bm.width(); ++x) {
|
|
|
|
if (TestImageGenerator::Color() != *bm.getAddr32(x, y)) {
|
|
|
|
++errors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(reporter, 0 == errors);
|
|
|
|
}
|
|
|
|
|
2014-01-21 23:39:22 +00:00
|
|
|
static void check_pixelref(TestImageGenerator::TestType type,
|
|
|
|
skiatest::Reporter* reporter,
|
|
|
|
SkDiscardableMemory::Factory* factory) {
|
2015-08-26 20:07:48 +00:00
|
|
|
SkAutoTDelete<SkImageGenerator> gen(new TestImageGenerator(type, reporter));
|
2015-08-27 14:41:13 +00:00
|
|
|
REPORTER_ASSERT(reporter, gen.get() != nullptr);
|
2013-12-05 18:31:42 +00:00
|
|
|
SkBitmap lazy;
|
2015-09-24 07:21:20 +00:00
|
|
|
bool success = SkInstallDiscardablePixelRef(gen.detach(), nullptr, &lazy, factory);
|
|
|
|
|
2015-03-19 15:31:14 +00:00
|
|
|
REPORTER_ASSERT(reporter, success);
|
2013-12-05 18:31:42 +00:00
|
|
|
if (TestImageGenerator::kSucceedGetPixels_TestType == type) {
|
2014-01-21 23:39:22 +00:00
|
|
|
check_test_image_generator_bitmap(reporter, lazy);
|
2013-12-05 18:31:42 +00:00
|
|
|
} else if (TestImageGenerator::kFailGetPixels_TestType == type) {
|
|
|
|
SkAutoLockPixels autoLockPixels(lazy);
|
2015-08-27 14:41:13 +00:00
|
|
|
REPORTER_ASSERT(reporter, nullptr == lazy.getPixels());
|
2013-12-05 18:31:42 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-12 22:37:32 +00:00
|
|
|
|
2013-12-05 14:00:03 +00:00
|
|
|
/**
|
2013-12-05 18:31:42 +00:00
|
|
|
* This tests the basic functionality of SkDiscardablePixelRef with a
|
|
|
|
* basic SkImageGenerator implementation and several
|
|
|
|
* SkDiscardableMemory::Factory choices.
|
2013-12-05 14:00:03 +00:00
|
|
|
*/
|
2013-12-05 18:31:42 +00:00
|
|
|
DEF_TEST(DiscardableAndCachingPixelRef, reporter) {
|
2015-09-24 07:21:20 +00:00
|
|
|
check_pixelref(TestImageGenerator::kFailGetPixels_TestType, reporter, nullptr);
|
|
|
|
check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, reporter, nullptr);
|
2013-12-05 18:31:42 +00:00
|
|
|
|
|
|
|
SkAutoTUnref<SkDiscardableMemoryPool> pool(
|
2015-08-27 14:41:13 +00:00
|
|
|
SkDiscardableMemoryPool::Create(1, nullptr));
|
2013-12-05 18:31:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
|
2015-09-24 07:21:20 +00:00
|
|
|
check_pixelref(TestImageGenerator::kFailGetPixels_TestType, reporter, pool);
|
2013-12-05 18:31:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
|
2015-09-24 07:21:20 +00:00
|
|
|
check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, reporter, pool);
|
2013-12-05 18:31:42 +00:00
|
|
|
REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
|
|
|
|
|
|
|
|
SkDiscardableMemoryPool* globalPool = SkGetGlobalDiscardableMemoryPool();
|
2015-08-27 14:41:13 +00:00
|
|
|
// Only acts differently from nullptr on a platform that has a
|
2013-12-10 18:33:07 +00:00
|
|
|
// default discardable memory implementation that differs from the
|
|
|
|
// global DM pool.
|
2015-09-24 07:21:20 +00:00
|
|
|
check_pixelref(TestImageGenerator::kFailGetPixels_TestType, reporter, globalPool);
|
|
|
|
check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, reporter, globalPool);
|
2013-11-21 15:32:08 +00:00
|
|
|
}
|
2014-08-18 15:27:09 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DEF_TEST(Image_NewFromGenerator, r) {
|
|
|
|
TestImageGenerator::TestType testTypes[] = {
|
|
|
|
TestImageGenerator::kFailGetPixels_TestType,
|
|
|
|
TestImageGenerator::kSucceedGetPixels_TestType,
|
|
|
|
};
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(testTypes); ++i) {
|
|
|
|
TestImageGenerator::TestType test = testTypes[i];
|
2015-08-26 20:07:48 +00:00
|
|
|
SkImageGenerator* gen = new TestImageGenerator(test, r);
|
2014-08-18 15:27:09 +00:00
|
|
|
SkAutoTUnref<SkImage> image(SkImage::NewFromGenerator(gen));
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == image.get()) {
|
2014-08-18 15:27:09 +00:00
|
|
|
ERRORF(r, "SkImage::NewFromGenerator unexpecedly failed ["
|
|
|
|
SK_SIZE_T_SPECIFIER "]", i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(r, TestImageGenerator::Width() == image->width());
|
|
|
|
REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height());
|
2015-08-20 15:47:26 +00:00
|
|
|
REPORTER_ASSERT(r, image->isLazyGenerated());
|
2014-08-18 15:27:09 +00:00
|
|
|
|
|
|
|
SkBitmap bitmap;
|
2014-09-02 19:50:45 +00:00
|
|
|
bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height());
|
2014-08-18 15:27:09 +00:00
|
|
|
SkCanvas canvas(bitmap);
|
|
|
|
const SkColor kDefaultColor = 0xffabcdef;
|
|
|
|
canvas.clear(kDefaultColor);
|
2015-08-27 14:41:13 +00:00
|
|
|
canvas.drawImage(image, 0, 0, nullptr);
|
2014-08-18 15:27:09 +00:00
|
|
|
if (TestImageGenerator::kSucceedGetPixels_TestType == test) {
|
|
|
|
REPORTER_ASSERT(
|
|
|
|
r, TestImageGenerator::Color() == *bitmap.getAddr32(0, 0));
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(r, kDefaultColor == bitmap.getColor(0,0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|