Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Paint_refImageFilter.cpp
Go to the documentation of this file.
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4// HASH=13f09088b569251547107d14ae989dc1
5REG_FIDDLE(Paint_refImageFilter, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint paint1, paint2;
8 paint1.setImageFilter(SkImageFilters::Offset(25, 25, nullptr));
9 SkDebugf("image filter unique: %s\n", paint1.getImageFilter()->unique() ? "true" : "false");
10 paint2.setImageFilter(paint1.refImageFilter());
11 SkDebugf("image filter unique: %s\n", paint1.getImageFilter()->unique() ? "true" : "false");
12}
13} // END FIDDLE
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
static sk_sp< SkImageFilter > Offset(SkScalar dx, SkScalar dy, sk_sp< SkImageFilter > input, const CropRect &cropRect={})
sk_sp< SkImageFilter > refImageFilter() const
void setImageFilter(sk_sp< SkImageFilter > imageFilter)
SkImageFilter * getImageFilter() const
Definition SkPaint.h:564
bool unique() const
Definition SkRefCnt.h:50
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60