3d50ea1b87
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
50 lines
1.6 KiB
C++
50 lines
1.6 KiB
C++
/*
|
|
* 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 "LazyDecodeBitmap.h"
|
|
|
|
#include "SkData.h"
|
|
#include "SkDecodingImageGenerator.h"
|
|
#include "SkDiscardableMemoryPool.h"
|
|
#include "SkImageGenerator.h"
|
|
#include "SkForceLinking.h"
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
|
|
__SK_FORCE_IMAGE_DECODER_LINKING;
|
|
|
|
DEFINE_bool(useVolatileCache, false, "Use a volatile cache for deferred image decoding pixels. "
|
|
"Only meaningful if --deferImageDecoding is set to true and the platform has an "
|
|
"implementation.");
|
|
|
|
// Fits SkPicture::InstallPixelRefProc call signature.
|
|
// Used in SkPicturePlayback::CreateFromStream
|
|
bool sk_tools::LazyDecodeBitmap(const void* src,
|
|
size_t length,
|
|
SkBitmap* dst) {
|
|
SkAutoDataUnref data(SkData::NewWithCopy(src, length));
|
|
if (NULL == data.get()) {
|
|
return false;
|
|
}
|
|
|
|
SkAutoTDelete<SkImageGenerator> gen(
|
|
SkDecodingImageGenerator::Create(
|
|
data, SkDecodingImageGenerator::Options()));
|
|
SkImageInfo info;
|
|
if ((NULL == gen.get()) || !gen->getInfo(&info)) {
|
|
return false;
|
|
}
|
|
SkDiscardableMemory::Factory* pool = NULL;
|
|
if ((!FLAGS_useVolatileCache) || (info.fWidth * info.fHeight < 32 * 1024)) {
|
|
// how to do switching with SkDiscardableMemory.
|
|
pool = SkGetGlobalDiscardableMemoryPool();
|
|
// Only meaningful if platform has a default discardable
|
|
// memory implementation that differs from the global DM pool.
|
|
}
|
|
return SkInstallDiscardablePixelRef(gen.detach(), dst, pool);
|
|
}
|