Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Pixmap_bounds.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=79750fb1d898a4e5c8c828b7bc9acec5
5REG_FIDDLE(Pixmap_bounds, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 for (int width : { 0, 2 } ) {
8 for (int height : { 0, 2 } ) {
10 SkDebugf("width: %d height: %d empty: %s\n", width, height,
11 pixmap.bounds().isEmpty() ? "true" : "false");
12 }
13 }
14}
15} // END FIDDLE
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
SkIRect bounds() const
Definition SkPixmap.h:207
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
int32_t height
int32_t width
bool isEmpty() const
Definition SkRect.h:202
static SkImageInfo MakeA8(int width, int height)