Flutter Engine
The Flutter Engine
imageblur2.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm/gm.h"
10#include "include/core/SkFont.h"
17#include "src/base/SkRandom.h"
18#include "tools/ToolUtils.h"
20// TODO deprecate imageblur
21
22constexpr int kWidth = 500;
23constexpr int kHeight = 500;
24
25DEF_SIMPLE_GM(imageblur2, canvas, kWidth, kHeight) {
26 constexpr float kBlurSigmas[] = { 0.0, 0.3f, 0.5f, 2.0f, 32.0f, 80.0f };
27 const char* kTestStrings[] = {
28 "The quick`~",
29 "brown fox[]",
30 "jumped over",
31 "the lazy@#$",
32 "dog.{}!%^&",
33 "*()+=-\\'\"/",
34 };
35 constexpr int sigmaCount = std::size(kBlurSigmas);
36 constexpr int testStringCount = std::size(kTestStrings);
37 constexpr SkScalar dx = kWidth / sigmaCount;
38 constexpr SkScalar dy = kHeight / sigmaCount;
39 constexpr SkScalar textSize = 12;
40
43
44 for (int x = 0; x < sigmaCount; x++) {
45 SkScalar sigmaX = kBlurSigmas[x];
46 for (int y = 0; y < sigmaCount; y++) {
47 SkScalar sigmaY = kBlurSigmas[y];
48
50 paint.setImageFilter(SkImageFilters::Blur(sigmaX, sigmaY, nullptr));
51 canvas->saveLayer(nullptr, &paint);
52
53 SkRandom rand;
54 SkPaint textPaint;
55 textPaint.setColor(ToolUtils::color_to_565(rand.nextBits(24) | 0xFF000000));
56 for (int i = 0; i < testStringCount; i++) {
57 canvas->drawString(kTestStrings[i],
59 SkIntToScalar(y * dy + textSize * i + textSize),
60 font,
61 textPaint);
62 }
63 canvas->restore();
64 }
65 }
66}
#define SkIntToScalar(x)
Definition: SkScalar.h:57
Definition: SkFont.h:35
@ kAlias
no transparent pixels on glyph edges
static sk_sp< SkImageFilter > Blur(SkScalar sigmaX, SkScalar sigmaY, SkTileMode tileMode, sk_sp< SkImageFilter > input, const CropRect &cropRect={})
void setColor(SkColor color)
Definition: SkPaint.cpp:119
uint32_t nextBits(unsigned bitCount)
Definition: SkRandom.h:72
const Paint & paint
Definition: color_source.cc:38
float SkScalar
Definition: extension.cpp:12
DEF_SIMPLE_GM(imageblur2, canvas, kWidth, kHeight)
Definition: imageblur2.cpp:25
constexpr int kWidth
Definition: imageblur2.cpp:22
constexpr int kHeight
Definition: imageblur2.cpp:23
double y
double x
skia_private::AutoTArray< sk_sp< SkImageFilter > > filters TypedMatrix matrix TypedMatrix matrix SkScalar dx
Definition: SkRecords.h:208
sk_sp< SkTypeface > DefaultPortableTypeface()
SkColor color_to_565(SkColor color)
Definition: ToolUtils.cpp:139
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
font
Font Metadata and Metrics.