Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Canvas_getContext.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=c4ea949e5fa5a0630dcb6b0204bd498f
5REG_FIDDLE(Canvas_getContext, 256, 256, false, 0) {
6void draw(SkCanvas* canvas) {
7 if (auto context = canvas->recordingContext()) {
8 if (context->asDirectContext()) {
9 canvas->clear(SK_ColorRED);
10 } else {
11 canvas->clear(SK_ColorGREEN);
12 }
13 } else {
14 canvas->clear(SK_ColorBLUE);
15 }
16}
17} // END FIDDLE
constexpr SkColor SK_ColorBLUE
Definition SkColor.h:135
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
constexpr SkColor SK_ColorGREEN
Definition SkColor.h:131
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
virtual GrRecordingContext * recordingContext() const
void clear(SkColor color)
Definition SkCanvas.h:1199
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60