Flutter Engine
The Flutter Engine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Canvas_accessTopLayerPixels_a.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.
4REG_FIDDLE(Canvas_accessTopLayerPixels_a, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
6 if (canvas->accessTopLayerPixels(nullptr, nullptr)) {
7 canvas->clear(SK_ColorRED);
8 } else {
9 canvas->clear(SK_ColorBLUE);
10 }
11}
12} // END FIDDLE
REG_FIDDLE(Canvas_accessTopLayerPixels_a, 256, 256, false, 0)
constexpr SkColor SK_ColorBLUE
Definition: SkColor.h:135
constexpr SkColor SK_ColorRED
Definition: SkColor.h:126
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void clear(SkColor color)
Definition: SkCanvas.h:1199
void * accessTopLayerPixels(SkImageInfo *info, size_t *rowBytes, SkIPoint *origin=nullptr)
Definition: SkCanvas.cpp:1245