Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
setimagefilter.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (setimagefilter, 256, 100, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( setimagefilter  ,
256  ,
100  ,
false  ,
 
)

Definition at line 4 of file setimagefilter.cpp.

4 {
5void draw(SkCanvas* canvas) {
7 bitmap.allocN32Pixels(100, 100);
8 SkCanvas offscreen(bitmap);
10 paint.setAntiAlias(true);
11 paint.setColor(SK_ColorWHITE);
12 SkFont font(fontMgr->matchFamilyStyle(nullptr, {}), 96);
13 offscreen.clear(0);
14 offscreen.drawString("e", 20, 70, font, paint);
16 SkPoint3::Make(80, 100, 10), SK_ColorWHITE, 1, 2, nullptr, nullptr));
17 canvas->drawImage(bitmap.asImage(), 0, 0, SkSamplingOptions(), &paint);
18}
19
20} // END FIDDLE
constexpr SkColor SK_ColorWHITE
Definition SkColor.h:122
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
sk_sp< SkTypeface > matchFamilyStyle(const char familyName[], const SkFontStyle &) const
static sk_sp< SkImageFilter > PointLitDiffuse(const SkPoint3 &location, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, sk_sp< SkImageFilter > input, const CropRect &cropRect={})
const Paint & paint
sk_sp< SkFontMgr > fontMgr
Definition examples.cpp:32
font
Font Metadata and Metrics.
static SkPoint3 Make(SkScalar x, SkScalar y, SkScalar z)
Definition SkPoint3.h:18