2017-01-14 18:45:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkBlendMode.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkColorSpace.h"
|
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/core/SkImage.h"
|
|
|
|
#include "include/core/SkImageFilter.h"
|
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkMaskFilter.h"
|
|
|
|
#include "include/core/SkMatrix.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPicture.h"
|
|
|
|
#include "include/core/SkPictureRecorder.h"
|
|
|
|
#include "include/core/SkPoint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkShader.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
#include "include/core/SkTextBlob.h"
|
|
|
|
#include "include/core/SkTileMode.h"
|
|
|
|
#include "include/core/SkTypeface.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
#include "include/effects/SkGradientShader.h"
|
2019-08-02 19:21:23 +00:00
|
|
|
#include "include/effects/SkImageFilters.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/effects/SkShaderMaskFilter.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/utils/SkRandom.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/core/SkCanvasPriv.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "tools/Resources.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/ToolUtils.h"
|
2017-02-23 15:28:33 +00:00
|
|
|
|
2019-05-01 21:28:53 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <initializer_list>
|
|
|
|
|
2017-01-17 15:48:52 +00:00
|
|
|
// This GM tests out the deprecated Android-specific unclipped saveLayer "feature".
|
|
|
|
// In particular, it attempts to compare the performance of unclipped saveLayers with alternatives.
|
|
|
|
|
|
|
|
static void save_layer_unclipped(SkCanvas* canvas,
|
|
|
|
SkScalar l, SkScalar t, SkScalar r, SkScalar b) {
|
2019-09-03 19:44:47 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAlphaf(0.25f);
|
2017-01-14 18:45:02 +00:00
|
|
|
SkRect rect = SkRect::MakeLTRB(l, t, r, b);
|
2020-05-30 20:02:14 +00:00
|
|
|
canvas->saveLayer({ &rect, &paint, nullptr,
|
2018-03-13 18:41:10 +00:00
|
|
|
(SkCanvas::SaveLayerFlags) SkCanvasPriv::kDontClipToLayer_SaveLayerFlag });
|
2017-01-14 18:45:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void do_draw(SkCanvas* canvas) {
|
|
|
|
SkPaint paint;
|
2019-09-03 19:44:47 +00:00
|
|
|
paint.setColor(0xFFFF0000);
|
2017-01-14 18:45:02 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < 20; ++i) {
|
|
|
|
canvas->drawRect({ 15, 15, 290, 40 }, paint);
|
|
|
|
canvas->translate(0, 30);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 15:48:52 +00:00
|
|
|
class UnclippedSaveLayerGM : public skiagm::GM {
|
|
|
|
public:
|
2019-09-03 19:44:47 +00:00
|
|
|
UnclippedSaveLayerGM() { this->setBGColor(SK_ColorWHITE); }
|
2017-01-14 18:45:02 +00:00
|
|
|
|
2017-01-17 15:48:52 +00:00
|
|
|
protected:
|
|
|
|
bool runAsBench() const override { return true; }
|
2017-01-14 18:45:02 +00:00
|
|
|
|
2017-01-17 15:48:52 +00:00
|
|
|
SkString onShortName() override {
|
2019-09-03 19:44:47 +00:00
|
|
|
return SkString("savelayer_unclipped");
|
2017-01-14 18:45:02 +00:00
|
|
|
}
|
2017-01-17 15:48:52 +00:00
|
|
|
|
|
|
|
SkISize onISize() override { return SkISize::Make(320, 640); }
|
|
|
|
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
|
|
const SkScalar L = 10;
|
|
|
|
const SkScalar T = 10;
|
|
|
|
const SkScalar R = 310;
|
|
|
|
const SkScalar B = 630;
|
|
|
|
|
|
|
|
canvas->clipRect({ L, T, R, B });
|
|
|
|
|
2019-09-03 19:44:47 +00:00
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
save_layer_unclipped(canvas, L, T, R, T + 100);
|
|
|
|
save_layer_unclipped(canvas, L, B - 100, R, B);
|
|
|
|
|
|
|
|
do_draw(canvas);
|
2017-01-17 15:48:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef skiagm::GM INHERITED;
|
|
|
|
};
|
2019-09-03 19:44:47 +00:00
|
|
|
DEF_GM(return new UnclippedSaveLayerGM;)
|
2017-01-17 15:48:52 +00:00
|
|
|
|
2017-02-23 15:28:33 +00:00
|
|
|
DEF_SIMPLE_GM(picture_savelayer, canvas, 320, 640) {
|
|
|
|
SkPaint paint1, paint2, paint3;
|
2019-02-15 21:13:57 +00:00
|
|
|
paint1.setAlphaf(0.5f);
|
|
|
|
paint2.setAlphaf(0.25f);
|
2017-02-23 15:28:33 +00:00
|
|
|
paint3.setColor(0xFFFF0000);
|
|
|
|
SkRect rect1{40, 5, 80, 70}, rect2{5, 40, 70, 80}, rect3{10, 10, 70, 70};
|
|
|
|
// In the future, we might also test the clipped case by allowing i = 0
|
|
|
|
for(int i = 1; i < 2; ++i) {
|
|
|
|
canvas->translate(100 * i, 0);
|
2018-03-13 18:41:10 +00:00
|
|
|
auto flag = i ?
|
|
|
|
(SkCanvas::SaveLayerFlags) SkCanvasPriv::kDontClipToLayer_SaveLayerFlag : 0;
|
2020-05-30 20:02:14 +00:00
|
|
|
canvas->saveLayer(SkCanvas::SaveLayerRec(&rect1, &paint1, nullptr, flag));
|
|
|
|
canvas->saveLayer(SkCanvas::SaveLayerRec(&rect2, &paint2, nullptr, flag));
|
2017-02-23 15:28:33 +00:00
|
|
|
canvas->drawRect(rect3, paint3);
|
|
|
|
canvas->restore();
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-02-28 22:45:27 +00:00
|
|
|
// Test kInitWithPrevious_SaveLayerFlag by drawing an image, save a layer with the flag, which
|
|
|
|
// should seed the layer with the image (from below). Then we punch a hole in the layer and
|
|
|
|
// restore with kPlus mode, which should show the mandrill super-bright on the outside, but
|
|
|
|
// normal where we punched the hole.
|
|
|
|
DEF_SIMPLE_GM(savelayer_initfromprev, canvas, 256, 256) {
|
2017-12-08 15:21:31 +00:00
|
|
|
canvas->drawImage(GetResourceAsImage("images/mandrill_256.png"), 0, 0, nullptr);
|
2017-02-28 22:45:27 +00:00
|
|
|
|
|
|
|
SkCanvas::SaveLayerRec rec;
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setBlendMode(SkBlendMode::kPlus);
|
|
|
|
rec.fSaveLayerFlags = SkCanvas::kInitWithPrevious_SaveLayerFlag;
|
|
|
|
rec.fPaint = &paint;
|
|
|
|
canvas->saveLayer(rec);
|
|
|
|
paint.setBlendMode(SkBlendMode::kClear);
|
|
|
|
canvas->drawCircle(128, 128, 96, paint);
|
|
|
|
canvas->restore();
|
|
|
|
};
|
2017-01-17 15:48:52 +00:00
|
|
|
|
2018-04-25 17:04:05 +00:00
|
|
|
DEF_SIMPLE_GM(savelayer_coverage, canvas, 500, 500) {
|
|
|
|
canvas->saveLayer(nullptr, nullptr);
|
|
|
|
|
|
|
|
SkRect r = { 0, 0, 200, 200 };
|
|
|
|
SkPaint layerPaint;
|
|
|
|
layerPaint.setBlendMode(SkBlendMode::kModulate);
|
|
|
|
|
|
|
|
auto image = GetResourceAsImage("images/mandrill_128.png");
|
|
|
|
|
|
|
|
auto proc = [layerPaint](SkCanvas* canvas, SkCanvas::SaveLayerRec& rec) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor(SK_ColorRED);
|
|
|
|
|
|
|
|
canvas->saveLayer(rec);
|
|
|
|
canvas->drawCircle(100, 100, 50, paint);
|
|
|
|
paint.setColor(0x8800FF00);
|
|
|
|
canvas->drawRect({10, 90, 190, 110}, paint);
|
|
|
|
canvas->restore();
|
|
|
|
};
|
|
|
|
|
|
|
|
const int yflags[] = { 0, SkCanvas::kInitWithPrevious_SaveLayerFlag };
|
|
|
|
for (int y = 0; y <= 1; ++y) {
|
|
|
|
const int xflags[] = { 0, SkCanvas::kMaskAgainstCoverage_EXPERIMENTAL_DONT_USE_SaveLayerFlag };
|
|
|
|
for (int x = 0; x <= 1; ++x) {
|
|
|
|
canvas->save();
|
|
|
|
canvas->translate(x * 200.f, y * 200.f);
|
|
|
|
|
|
|
|
SkCanvas::SaveLayerRec rec(&r, &layerPaint, yflags[y] | xflags[x]);
|
|
|
|
canvas->drawImageRect(image, r, nullptr);
|
|
|
|
proc(canvas, rec);
|
|
|
|
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
|
2019-04-19 19:00:47 +00:00
|
|
|
static void draw_cell(SkCanvas* canvas, sk_sp<SkTextBlob> blob, SkColor c, SkScalar w, SkScalar h,
|
|
|
|
bool useDrawBehind) {
|
2018-12-18 22:38:18 +00:00
|
|
|
SkRect r = SkRect::MakeWH(w, h);
|
|
|
|
SkPaint p;
|
|
|
|
p.setColor(c);
|
|
|
|
p.setBlendMode(SkBlendMode::kSrc);
|
|
|
|
canvas->drawRect(r, p);
|
|
|
|
p.setBlendMode(SkBlendMode::kSrcOver);
|
|
|
|
|
|
|
|
const SkScalar margin = 80;
|
|
|
|
r.fLeft = w - margin;
|
|
|
|
|
|
|
|
// save the behind image
|
|
|
|
SkDEBUGCODE(int sc0 =) canvas->getSaveCount();
|
|
|
|
SkDEBUGCODE(int sc1 =) SkCanvasPriv::SaveBehind(canvas, &r);
|
|
|
|
SkDEBUGCODE(int sc2 =) canvas->getSaveCount();
|
|
|
|
SkASSERT(sc0 == sc1);
|
|
|
|
SkASSERT(sc0 + 1 == sc2);
|
|
|
|
|
|
|
|
// draw the foreground (including over the 'behind' section)
|
|
|
|
p.setColor(SK_ColorBLACK);
|
|
|
|
canvas->drawTextBlob(blob, 10, 30, p);
|
|
|
|
|
|
|
|
// draw the treatment
|
|
|
|
const SkPoint pts[] = { {r.fLeft,0}, {r.fRight, 0} };
|
|
|
|
const SkColor colors[] = { 0x88000000, 0x0 };
|
2019-04-03 14:27:45 +00:00
|
|
|
auto sh = SkGradientShader::MakeLinear(pts, colors, nullptr, 2, SkTileMode::kClamp);
|
2018-12-18 22:38:18 +00:00
|
|
|
p.setShader(sh);
|
|
|
|
p.setBlendMode(SkBlendMode::kDstIn);
|
2019-04-19 19:00:47 +00:00
|
|
|
|
|
|
|
if (useDrawBehind) {
|
|
|
|
SkCanvasPriv::DrawBehind(canvas, p);
|
|
|
|
} else {
|
|
|
|
canvas->drawRect(r, p);
|
|
|
|
}
|
2018-12-18 22:38:18 +00:00
|
|
|
|
|
|
|
// this should restore the behind image
|
|
|
|
canvas->restore();
|
|
|
|
SkDEBUGCODE(int sc3 =) canvas->getSaveCount();
|
|
|
|
SkASSERT(sc3 == sc0);
|
|
|
|
|
|
|
|
// just outline where we expect the treatment to appear
|
|
|
|
p.reset();
|
|
|
|
p.setStyle(SkPaint::kStroke_Style);
|
2019-02-15 21:13:57 +00:00
|
|
|
p.setAlphaf(0.25f);
|
2018-12-18 22:38:18 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 19:00:47 +00:00
|
|
|
static void draw_list(SkCanvas* canvas, sk_sp<SkTextBlob> blob, bool useDrawBehind) {
|
2018-12-18 22:38:18 +00:00
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
|
|
|
|
SkRandom rand;
|
|
|
|
SkScalar w = 400;
|
|
|
|
SkScalar h = 40;
|
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
SkColor c = rand.nextU(); // ensure we're opaque
|
|
|
|
c = (c & 0xFFFFFF) | 0x80000000;
|
2019-04-19 19:00:47 +00:00
|
|
|
draw_cell(canvas, blob, c, w, h, useDrawBehind);
|
2018-12-18 22:38:18 +00:00
|
|
|
canvas->translate(0, h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-19 19:00:47 +00:00
|
|
|
DEF_SIMPLE_GM(save_behind, canvas, 830, 670) {
|
2018-12-18 22:38:18 +00:00
|
|
|
SkFont font;
|
2019-04-21 22:15:23 +00:00
|
|
|
font.setTypeface(ToolUtils::create_portable_typeface());
|
2018-12-18 22:38:18 +00:00
|
|
|
font.setSize(30);
|
2019-04-21 22:15:23 +00:00
|
|
|
|
2018-12-18 22:38:18 +00:00
|
|
|
const char text[] = "This is a very long line of text";
|
|
|
|
auto blob = SkTextBlob::MakeFromText(text, strlen(text), font);
|
|
|
|
|
2019-04-19 19:00:47 +00:00
|
|
|
for (bool useDrawBehind : {false, true}) {
|
|
|
|
canvas->save();
|
|
|
|
|
|
|
|
draw_list(canvas, blob, useDrawBehind);
|
|
|
|
canvas->translate(0, 350);
|
|
|
|
canvas->saveLayer({0, 0, 400, 320}, nullptr);
|
|
|
|
draw_list(canvas, blob, useDrawBehind);
|
|
|
|
canvas->restore();
|
|
|
|
|
|
|
|
canvas->restore();
|
|
|
|
canvas->translate(430, 0);
|
|
|
|
}
|
2018-12-18 22:38:18 +00:00
|
|
|
}
|
2019-07-12 16:53:11 +00:00
|
|
|
|
|
|
|
#include "include/effects/SkGradientShader.h"
|
|
|
|
|
|
|
|
DEF_SIMPLE_GM(savelayer_f16, canvas, 900, 300) {
|
|
|
|
int n = 15;
|
|
|
|
SkRect r{0, 0, 300, 300};
|
|
|
|
SkPaint paint;
|
|
|
|
|
|
|
|
const SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorRED };
|
|
|
|
paint.setShader(SkGradientShader::MakeSweep(r.centerX(), r.centerY(),
|
|
|
|
colors, nullptr, SK_ARRAY_COUNT(colors)));
|
|
|
|
|
|
|
|
canvas->drawOval(r, paint);
|
|
|
|
|
|
|
|
paint.setAlphaf(1.0f/n);
|
|
|
|
paint.setBlendMode(SkBlendMode::kPlus);
|
|
|
|
|
|
|
|
for (auto flags : {0, (int)SkCanvas::kF16ColorType}) {
|
|
|
|
canvas->translate(r.width(), 0);
|
|
|
|
|
|
|
|
SkCanvas::SaveLayerRec rec;
|
|
|
|
rec.fSaveLayerFlags = flags;
|
|
|
|
canvas->saveLayer(rec);
|
|
|
|
for (int i = 0; i < n; ++i) {
|
|
|
|
canvas->drawOval(r, paint);
|
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
}
|