Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Region_readFromMemory.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=1ede346c430ef23df0eaaf0773dd6a15
5REG_FIDDLE(Region_readFromMemory, 256, 100, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkRegion region({20, 20, 80, 80});
8 size_t size = region.writeToMemory(nullptr);
10 region.writeToMemory(data->writable_data());
12 copy.readFromMemory(data->data(), data->size());
13 canvas->drawRegion(copy, SkPaint());
14}
15} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawRegion(const SkRegion &region, const SkPaint &paint)
static sk_sp< SkData > MakeUninitialized(size_t length)
Definition SkData.cpp:116
size_t writeToMemory(void *buffer) const
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
Definition copy.py:1