82ebe04caf
Moved named common transfer functions and gamuts to constexpr values in SkColorSpace.h, in SkNamedTransferFn and SkNamedGamut namespaces. Converted nearly all SkColorSpace::MakeRGB calls within Skia to use the new factory with the named values. Multiple clients want a way to extract named transfer function and gamut - this still doesn't provide that, but this may be a better path forward for honestly advertising how SkColorSpace works internally. Originally landed as: https://skia.googlesource.com/skia/+/a9549ab31630fc244094e6f1692371cbaf87f666 Re-landing with a new serialization format, but maintaining ability to load old serialized color spaces, for SKP compatibility. Bug: skia: Change-Id: Ib84a6e1cd5d7d9816175773fdbaff2ca32658667 Reviewed-on: https://skia-review.googlesource.com/c/181176 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Benchmark.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkColorSpaceXformCanvas.h"
|
|
#include "SkString.h"
|
|
|
|
class ColorCanvasDrawBitmap : public Benchmark {
|
|
public:
|
|
ColorCanvasDrawBitmap(sk_sp<SkColorSpace> src, sk_sp<SkColorSpace> dst, const char* name)
|
|
: fDst(dst)
|
|
, fName(SkStringPrintf("ColorCanvasDrawBitmap_%s", name))
|
|
{
|
|
fBitmap.allocPixels(SkImageInfo::MakeN32(100, 100, kOpaque_SkAlphaType, src));
|
|
fBitmap.eraseColor(SK_ColorBLUE);
|
|
}
|
|
|
|
const char* onGetName() override {
|
|
return fName.c_str();
|
|
}
|
|
|
|
SkIPoint onGetSize() override {
|
|
return SkIPoint::Make(100, 100);
|
|
}
|
|
|
|
bool isSuitableFor(Backend backend) override {
|
|
return kRaster_Backend == backend || kGPU_Backend == backend;
|
|
}
|
|
|
|
void onDraw(int n, SkCanvas* canvas) override {
|
|
// This simulates an Android app that draws bitmaps to a software canvas.
|
|
// Chrome and the Android framework both use SkImages exclusively.
|
|
std::unique_ptr<SkCanvas> colorCanvas = SkCreateColorSpaceXformCanvas(canvas, fDst);
|
|
for (int i = 0; i < n; i++) {
|
|
colorCanvas->drawBitmap(fBitmap, 0, 0, nullptr);
|
|
}
|
|
}
|
|
|
|
private:
|
|
sk_sp<SkColorSpace> fDst;
|
|
SkString fName;
|
|
SkBitmap fBitmap;
|
|
|
|
typedef Benchmark INHERITED;
|
|
};
|
|
|
|
DEF_BENCH(return new ColorCanvasDrawBitmap(nullptr, SkColorSpace::MakeSRGB(), "null_to_sRGB");)
|
|
DEF_BENCH(return new ColorCanvasDrawBitmap(SkColorSpace::MakeSRGB(), SkColorSpace::MakeSRGB(),
|
|
"sRGB_to_sRGB");)
|
|
DEF_BENCH(return new ColorCanvasDrawBitmap(
|
|
SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kAdobeRGB),
|
|
SkColorSpace::MakeSRGB(), "AdobeRGB_to_sRGB");)
|