2019-07-17 20:31:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Google LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "samplecode/Sample.h"
|
|
|
|
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkColor.h"
|
2019-08-01 20:38:24 +00:00
|
|
|
#include "include/core/SkColorFilter.h"
|
2019-07-17 20:31:44 +00:00
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/core/SkImage.h"
|
|
|
|
#include "include/core/SkImageFilter.h"
|
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPoint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
|
|
|
|
#include "include/effects/SkDashPathEffect.h"
|
|
|
|
#include "include/effects/SkGradientShader.h"
|
2019-08-01 20:38:24 +00:00
|
|
|
#include "include/effects/SkImageFilters.h"
|
2019-07-17 20:31:44 +00:00
|
|
|
|
2019-08-02 13:57:04 +00:00
|
|
|
#include "src/core/SkImageFilter_Base.h"
|
2019-07-17 20:31:44 +00:00
|
|
|
#include "src/core/SkSpecialImage.h"
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
#include "tools/ToolUtils.h"
|
|
|
|
|
2019-07-17 20:31:44 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct FilterNode {
|
|
|
|
// Pointer to the actual filter in the DAG, so it still contains its input filters and
|
|
|
|
// may be used as an input in an earlier node. Null when this represents the "source" input
|
|
|
|
sk_sp<SkImageFilter> fFilter;
|
|
|
|
|
|
|
|
// FilterNodes wrapping each of fFilter's inputs. Leaf node when fInputNodes is empty.
|
|
|
|
SkTArray<FilterNode> fInputNodes;
|
|
|
|
|
|
|
|
// Distance from root filter
|
|
|
|
int fDepth;
|
|
|
|
|
|
|
|
// The source content rect (this is the same for all nodes, but is stored here for convenience)
|
2020-10-14 19:59:02 +00:00
|
|
|
skif::ParameterSpace<SkRect> fContent;
|
|
|
|
// The mapping for the filter dag (same for all nodes, but stored here for convenience)
|
|
|
|
skif::Mapping fMapping;
|
|
|
|
|
|
|
|
// Cached reverse bounds using device-space clip bounds (e.g. no local bounds hint passed to
|
|
|
|
// saveLayer). This represents the layer calculated in SkCanvas for the filtering.
|
|
|
|
skif::LayerSpace<SkIRect> fUnhintedLayerBounds;
|
|
|
|
|
|
|
|
// Cached input bounds using the local draw bounds (e.g. saveLayer with a bounds rect, or
|
|
|
|
// an auto-layer for a draw with image filter). This represents the layer bounds up to this
|
|
|
|
// point of the DAG.
|
|
|
|
skif::LayerSpace<SkIRect> fHintedLayerBounds;
|
|
|
|
|
|
|
|
// Cached output bounds based on local draw bounds. This represents the output up to this
|
|
|
|
// point of the DAG.
|
|
|
|
skif::LayerSpace<SkIRect> fOutputBounds;
|
|
|
|
|
|
|
|
FilterNode(const SkImageFilter* filter,
|
|
|
|
const skif::Mapping& mapping,
|
|
|
|
const skif::ParameterSpace<SkRect>& content,
|
|
|
|
int depth)
|
|
|
|
: fFilter(sk_ref_sp(filter))
|
|
|
|
, fDepth(depth)
|
|
|
|
, fContent(content)
|
|
|
|
, fMapping(mapping) {
|
|
|
|
this->computeInputBounds();
|
|
|
|
this->computeOutputBounds();
|
2019-07-17 20:31:44 +00:00
|
|
|
if (fFilter) {
|
2020-10-14 20:57:41 +00:00
|
|
|
fInputNodes.reserve_back(fFilter->countInputs());
|
2020-10-14 19:59:02 +00:00
|
|
|
for (int i = 0; i < fFilter->countInputs(); ++i) {
|
|
|
|
fInputNodes.emplace_back(fFilter->getInput(i), mapping, content, depth + 1);
|
|
|
|
}
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-14 19:59:02 +00:00
|
|
|
private:
|
|
|
|
void computeOutputBounds() {
|
2019-07-17 20:31:44 +00:00
|
|
|
if (fFilter) {
|
2020-10-14 19:59:02 +00:00
|
|
|
// For visualization purposes, we want the output bounds in layer space, before it's
|
|
|
|
// been transformed to device space. To achieve that, we mock a new mapping with the
|
|
|
|
// identity matrix transform.
|
2022-02-15 18:16:53 +00:00
|
|
|
skif::Mapping layerOnly{fMapping.layerMatrix()};
|
2020-10-14 19:59:02 +00:00
|
|
|
skif::DeviceSpace<SkIRect> pseudoDeviceBounds =
|
|
|
|
as_IFB(fFilter)->getOutputBounds(layerOnly, fContent);
|
|
|
|
// Since layerOnly's device matrix is I, this is effectively a cast to layer space
|
|
|
|
fOutputBounds = layerOnly.deviceToLayer(pseudoDeviceBounds);
|
2019-07-17 20:31:44 +00:00
|
|
|
} else {
|
2020-10-14 19:59:02 +00:00
|
|
|
fOutputBounds = fMapping.paramToLayer(fContent).roundOut();
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
2020-10-14 19:59:02 +00:00
|
|
|
// Fill in children
|
2019-07-17 20:31:44 +00:00
|
|
|
for (int i = 0; i < fInputNodes.count(); ++i) {
|
2020-10-14 19:59:02 +00:00
|
|
|
fInputNodes[i].computeOutputBounds();
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-14 19:59:02 +00:00
|
|
|
void computeInputBounds() {
|
|
|
|
// As a proxy for what the base device had, use the content rect mapped to device space
|
|
|
|
// (e.g. clipRect() was called with the same coords prior to the draw).
|
|
|
|
skif::DeviceSpace<SkIRect> targetOutput(fMapping.totalMatrix()
|
|
|
|
.mapRect(SkRect(fContent))
|
|
|
|
.roundOut());
|
2019-07-17 20:31:44 +00:00
|
|
|
|
|
|
|
if (fFilter) {
|
2020-10-14 19:59:02 +00:00
|
|
|
fHintedLayerBounds = as_IFB(fFilter)->getInputBounds(fMapping, targetOutput, &fContent);
|
|
|
|
fUnhintedLayerBounds = as_IFB(fFilter)->getInputBounds(fMapping, targetOutput, nullptr);
|
2019-07-17 20:31:44 +00:00
|
|
|
} else {
|
2020-10-14 19:59:02 +00:00
|
|
|
fHintedLayerBounds = fMapping.paramToLayer(fContent).roundOut();
|
|
|
|
fUnhintedLayerBounds = fMapping.deviceToLayer(targetOutput);
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
static FilterNode build_dag(const SkMatrix& ctm, const SkRect& rect,
|
|
|
|
const SkImageFilter* rootFilter) {
|
|
|
|
// Emulate SkCanvas::internalSaveLayer's decomposition of the CTM.
|
2020-10-14 19:59:02 +00:00
|
|
|
skif::ParameterSpace<SkRect> content(rect);
|
2020-10-16 16:30:07 +00:00
|
|
|
skif::ParameterSpace<SkPoint> center({rect.centerX(), rect.centerY()});
|
Don't assume DecomposeCTM and setDeviceCoordSystem always succeed
Very originally, skif::Mapping::DecomposeCTM() and
SkBaseDevice::setDeviceCoordinateSystem assumed that if the canvas
matrix was invertible, then any scale decomposition would produce a
valid device coordinate system. This proved not to be true and fuzzers
quickly caught it, but I had attempted to address it by forcing
SkCanvas to do extra work so that the above two functions remained
unchanged.
However, it's become apparent that even making the assumption that the
product of two invertible matrices remains invertible does not always
hold true in the wonderful world of floating point math.
Instead, this rewrites DecomposeCTM and setDeviceCoordinateSystem to
return bools, allowing them to fail. This cleans up some of the earlier
checks that SkCanvas makes while computing the skif::Mapping, and it
also ensures that once we fold in the prior device's transform, the
net layer->global transform remains valid. If any of this fails, it
just gets rid of the new device and sets the clip to empty, basically
preventing drawing until the invalid layer has been restored.
Bug: chromium:1239968, chromium:1240685
Change-Id: Ib9ce8f95859e726a9eacf1154f6eef8dd3995500
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/442017
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Michael Ludwig <michaelludwig@google.com>
2021-08-25 19:04:10 +00:00
|
|
|
skif::Mapping mapping;
|
|
|
|
SkAssertResult(mapping.decomposeCTM(ctm, rootFilter, center));
|
2020-10-14 19:59:02 +00:00
|
|
|
return FilterNode(rootFilter, mapping, content, 0);
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_node(SkCanvas* canvas, const FilterNode& node) {
|
|
|
|
canvas->clear(SK_ColorTRANSPARENT);
|
|
|
|
|
|
|
|
SkPaint filterPaint;
|
|
|
|
filterPaint.setImageFilter(node.fFilter);
|
|
|
|
|
2020-10-14 19:59:02 +00:00
|
|
|
SkRect content = SkRect(node.fContent);
|
2019-07-17 20:31:44 +00:00
|
|
|
SkPaint paint;
|
|
|
|
static const SkColor kColors[2] = {SK_ColorGREEN, SK_ColorWHITE};
|
2020-10-14 19:59:02 +00:00
|
|
|
SkPoint points[2] = { {content.fLeft + 15.f, content.fTop + 15.f},
|
|
|
|
{content.fRight - 15.f, content.fBottom - 15.f} };
|
2022-06-22 12:52:07 +00:00
|
|
|
paint.setShader(SkGradientShader::MakeLinear(points, kColors, nullptr, std::size(kColors),
|
2019-07-17 20:50:57 +00:00
|
|
|
SkTileMode::kRepeat));
|
2019-07-17 20:31:44 +00:00
|
|
|
|
|
|
|
SkPaint line;
|
2019-07-19 14:13:47 +00:00
|
|
|
line.setStrokeWidth(0.f);
|
2019-07-17 20:31:44 +00:00
|
|
|
line.setStyle(SkPaint::kStroke_Style);
|
|
|
|
|
2020-10-14 19:59:02 +00:00
|
|
|
canvas->save();
|
2022-04-18 21:21:47 +00:00
|
|
|
canvas->concat(node.fMapping.layerToDevice());
|
2020-10-14 19:59:02 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->concat(node.fMapping.layerMatrix());
|
|
|
|
|
|
|
|
canvas->saveLayer(&content, &filterPaint);
|
|
|
|
canvas->drawRect(content, paint);
|
|
|
|
canvas->restore(); // Completes the image filter
|
|
|
|
|
|
|
|
// Draw content-rect bounds
|
|
|
|
line.setColor(SK_ColorBLACK);
|
|
|
|
canvas->drawRect(content, line);
|
|
|
|
|
|
|
|
// Bounding boxes have all been mapped by the layer matrix from local to layer space, so undo
|
|
|
|
// the layer matrix, leaving just the device matrix.
|
|
|
|
canvas->restore();
|
|
|
|
|
|
|
|
// The hinted bounds of the layer saved for the filtering
|
|
|
|
line.setColor(SK_ColorRED);
|
|
|
|
canvas->drawRect(SkRect::Make(SkIRect(node.fHintedLayerBounds)).makeOutset(3.f, 3.f), line);
|
|
|
|
// The bounds of the layer if there was no local content hint
|
|
|
|
line.setColor(SK_ColorGREEN);
|
|
|
|
canvas->drawRect(SkRect::Make(SkIRect(node.fUnhintedLayerBounds)).makeOutset(2.f, 2.f), line);
|
|
|
|
|
|
|
|
// The output bounds in layer space
|
|
|
|
line.setColor(SK_ColorBLUE);
|
|
|
|
canvas->drawRect(SkRect::Make(SkIRect(node.fOutputBounds)).makeOutset(1.f, 1.f), line);
|
|
|
|
// Device-space bounding box of the output bounds (e.g. what legacy DAG manipulation via
|
|
|
|
// MatrixTransform would produce).
|
|
|
|
static const SkScalar kDashParams[] = {6.f, 12.f};
|
|
|
|
line.setPathEffect(SkDashPathEffect::Make(kDashParams, 2, 0.f));
|
|
|
|
SkRect devOutputBounds = SkRect::Make(SkIRect(node.fMapping.layerToDevice(node.fOutputBounds)));
|
|
|
|
canvas->restore(); // undoes device matrix
|
|
|
|
canvas->drawRect(devOutputBounds, line);
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr float kLineHeight = 16.f;
|
|
|
|
static constexpr float kLineInset = 8.f;
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
static float print_matrix(SkCanvas* canvas, const char* prefix, const SkMatrix& matrix,
|
2019-07-17 20:31:44 +00:00
|
|
|
float x, float y, const SkFont& font, const SkPaint& paint) {
|
|
|
|
canvas->drawString(prefix, x, y, font, paint);
|
|
|
|
y += kLineHeight;
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
SkString row;
|
|
|
|
row.appendf("[%.2f %.2f %.2f]",
|
|
|
|
matrix.get(i * 3), matrix.get(i * 3 + 1), matrix.get(i * 3 + 2));
|
|
|
|
canvas->drawString(row, x, y, font, paint);
|
|
|
|
y += kLineHeight;
|
|
|
|
}
|
2019-07-17 20:50:57 +00:00
|
|
|
return y;
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
static float print_size(SkCanvas* canvas, const char* prefix, const SkIRect& rect,
|
2019-07-17 20:31:44 +00:00
|
|
|
float x, float y, const SkFont& font, const SkPaint& paint) {
|
|
|
|
canvas->drawString(prefix, x, y, font, paint);
|
|
|
|
y += kLineHeight;
|
|
|
|
SkString sz;
|
|
|
|
sz.appendf("%d x %d", rect.width(), rect.height());
|
|
|
|
canvas->drawString(sz, x, y, font, paint);
|
2019-07-17 20:50:57 +00:00
|
|
|
return y + kLineHeight;
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
static float print_info(SkCanvas* canvas, const FilterNode& node) {
|
2019-07-17 20:31:44 +00:00
|
|
|
SkFont font(nullptr, 12);
|
|
|
|
SkPaint text;
|
|
|
|
text.setAntiAlias(true);
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
float y = kLineHeight;
|
2020-10-14 19:59:02 +00:00
|
|
|
if (node.fFilter) {
|
2019-07-17 20:50:57 +00:00
|
|
|
canvas->drawString(node.fFilter->getTypeName(), kLineInset, y, font, text);
|
2020-10-14 19:59:02 +00:00
|
|
|
y += kLineHeight;
|
|
|
|
if (node.fDepth == 0) {
|
|
|
|
// The mapping is the same for all nodes, so only print at the root
|
|
|
|
y = print_matrix(canvas, "Param->Layer", node.fMapping.layerMatrix(),
|
|
|
|
kLineInset, y, font, text);
|
2022-04-18 21:21:47 +00:00
|
|
|
y = print_matrix(canvas,
|
|
|
|
"Layer->Device",
|
|
|
|
node.fMapping.layerToDevice(),
|
|
|
|
kLineInset,
|
|
|
|
y,
|
|
|
|
font,
|
|
|
|
text);
|
2020-10-14 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
y = print_size(canvas, "Layer Size", SkIRect(node.fUnhintedLayerBounds),
|
|
|
|
kLineInset, y, font, text);
|
|
|
|
y = print_size(canvas, "Layer Size (hinted)", SkIRect(node.fHintedLayerBounds),
|
|
|
|
kLineInset, y, font, text);
|
2019-07-17 20:31:44 +00:00
|
|
|
} else {
|
2020-10-14 19:59:02 +00:00
|
|
|
canvas->drawString("Source Input", kLineInset, y, font, text);
|
2019-07-17 20:50:57 +00:00
|
|
|
y += kLineHeight;
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
2019-07-17 20:50:57 +00:00
|
|
|
|
|
|
|
return y;
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
// Returns bottom edge in pixels that the subtree reached in canvas
|
2019-07-17 20:31:44 +00:00
|
|
|
static float draw_dag(SkCanvas* canvas, SkSurface* nodeSurface, const FilterNode& node) {
|
|
|
|
// First capture the results of the node, into nodeSurface
|
|
|
|
draw_node(nodeSurface->getCanvas(), node);
|
|
|
|
sk_sp<SkImage> nodeResults = nodeSurface->makeImageSnapshot();
|
|
|
|
|
2019-07-17 20:50:57 +00:00
|
|
|
// Fill in background of the filter node with a checkerboard
|
|
|
|
canvas->save();
|
|
|
|
canvas->clipRect(SkRect::MakeWH(nodeResults->width(), nodeResults->height()));
|
|
|
|
ToolUtils::draw_checkerboard(canvas, SK_ColorGRAY, SK_ColorLTGRAY, 10);
|
|
|
|
canvas->restore();
|
|
|
|
|
2019-07-17 20:31:44 +00:00
|
|
|
// Display filtered results in current canvas' location (assumed CTM is set for this node)
|
|
|
|
canvas->drawImage(nodeResults, 0, 0);
|
|
|
|
|
|
|
|
SkPaint line;
|
2019-07-17 20:50:57 +00:00
|
|
|
line.setAntiAlias(true);
|
2019-07-17 20:31:44 +00:00
|
|
|
line.setStyle(SkPaint::kStroke_Style);
|
|
|
|
line.setStrokeWidth(3.f);
|
|
|
|
|
|
|
|
// Text info
|
|
|
|
canvas->save();
|
2019-07-17 20:50:57 +00:00
|
|
|
canvas->translate(0, nodeResults->height());
|
|
|
|
float textHeight = print_info(canvas, node);
|
2019-07-17 20:31:44 +00:00
|
|
|
canvas->restore();
|
|
|
|
|
|
|
|
// Border around filtered results + text info
|
2019-07-17 20:50:57 +00:00
|
|
|
canvas->drawRect(SkRect::MakeWH(nodeResults->width(), nodeResults->height() + textHeight),
|
|
|
|
line);
|
2019-07-17 20:31:44 +00:00
|
|
|
|
|
|
|
static const float kPad = 20.f;
|
2019-07-17 20:50:57 +00:00
|
|
|
float x = nodeResults->width() + kPad;
|
|
|
|
float y = 0;
|
2019-07-17 20:31:44 +00:00
|
|
|
for (int i = 0; i < node.fInputNodes.count(); ++i) {
|
|
|
|
// Line connecting this node to its child
|
2019-07-17 20:50:57 +00:00
|
|
|
canvas->drawLine(nodeResults->width(), 0.5f * nodeResults->height(), // right of node
|
|
|
|
x, y + 0.5f * nodeResults->height(), line); // left of child
|
2019-07-17 20:31:44 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->translate(x, y);
|
2019-07-17 20:50:57 +00:00
|
|
|
y = draw_dag(canvas, nodeSurface, node.fInputNodes[i]);
|
2019-07-17 20:31:44 +00:00
|
|
|
canvas->restore();
|
|
|
|
}
|
2020-02-05 18:34:09 +00:00
|
|
|
return std::max(y, nodeResults->height() + textHeight + kPad);
|
2019-07-17 20:31:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_dag(SkCanvas* canvas, sk_sp<SkImageFilter> filter,
|
|
|
|
const SkRect& rect, const SkISize& surfaceSize) {
|
|
|
|
// Get the current CTM, which includes all the viewer's UI modifications, which we want to
|
|
|
|
// pass into our mock canvases for each DAG node.
|
|
|
|
SkMatrix ctm = canvas->getTotalMatrix();
|
|
|
|
|
|
|
|
canvas->save();
|
|
|
|
// Reset the matrix so that the DAG layout and instructional text is fixed to the window.
|
|
|
|
canvas->resetMatrix();
|
|
|
|
|
|
|
|
// Process the image filter DAG to display intermediate results later on, which will apply the
|
|
|
|
// provided CTM during draw_node calls.
|
|
|
|
FilterNode dag = build_dag(ctm, rect, filter.get());
|
|
|
|
|
2019-10-03 17:26:54 +00:00
|
|
|
sk_sp<SkSurface> nodeSurface =
|
|
|
|
canvas->makeSurface(canvas->imageInfo().makeDimensions(surfaceSize));
|
2019-07-17 20:31:44 +00:00
|
|
|
draw_dag(canvas, nodeSurface.get(), dag);
|
|
|
|
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
class ImageFilterDAGSample : public Sample {
|
|
|
|
public:
|
|
|
|
ImageFilterDAGSample() {}
|
|
|
|
|
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
|
|
|
static const SkRect kFilterRect = SkRect::MakeXYWH(20.f, 20.f, 60.f, 60.f);
|
|
|
|
static const SkISize kFilterSurfaceSize = SkISize::Make(
|
|
|
|
2 * (kFilterRect.fRight + kFilterRect.fLeft),
|
|
|
|
2 * (kFilterRect.fBottom + kFilterRect.fTop));
|
|
|
|
|
|
|
|
// Somewhat clunky, but we want to use the viewer calculated CTM in the mini surfaces used
|
|
|
|
// per DAG node. The rotation matrix viewer calculates is based on the sample size so trick
|
|
|
|
// it into calculating the right matrix for us w/ 1 frame latency.
|
|
|
|
this->setSize(kFilterSurfaceSize.width(), kFilterSurfaceSize.height());
|
|
|
|
|
|
|
|
// Make a large DAG
|
|
|
|
// /--- Color Filter <---- Blur <--- Offset
|
|
|
|
// Merge <
|
|
|
|
// \--- Blur <--- Drop Shadow
|
2019-08-01 20:38:24 +00:00
|
|
|
sk_sp<SkImageFilter> drop2 = SkImageFilters::DropShadow(
|
|
|
|
10.f, 5.f, 3.f, 3.f, SK_ColorBLACK, nullptr);
|
|
|
|
sk_sp<SkImageFilter> blur1 = SkImageFilters::Blur(2.f, 2.f, std::move(drop2));
|
|
|
|
|
|
|
|
sk_sp<SkImageFilter> offset3 = SkImageFilters::Offset(-5.f, -5.f, nullptr);
|
|
|
|
sk_sp<SkImageFilter> blur2 = SkImageFilters::Blur(4.f, 4.f, std::move(offset3));
|
|
|
|
sk_sp<SkImageFilter> cf1 = SkImageFilters::ColorFilter(
|
2019-07-17 20:31:44 +00:00
|
|
|
SkColorFilters::Blend(SK_ColorGRAY, SkBlendMode::kModulate), std::move(blur2));
|
|
|
|
|
2019-08-01 20:38:24 +00:00
|
|
|
sk_sp<SkImageFilter> merge0 = SkImageFilters::Merge(std::move(blur1), std::move(cf1));
|
2019-07-17 20:31:44 +00:00
|
|
|
|
|
|
|
draw_dag(canvas, std::move(merge0), kFilterRect, kFilterSurfaceSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
SkString name() override { return SkString("ImageFilterDAG"); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2020-09-03 02:42:33 +00:00
|
|
|
using INHERITED = Sample;
|
2019-07-17 20:31:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DEF_SAMPLE(return new ImageFilterDAGSample();)
|