Flutter Engine
The Flutter Engine
Image_dimensions.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(Image_dimensions, 256, 256, true, 4) {
5void draw(SkCanvas* canvas) {
6 SkISize dimensions = image->dimensions();
8 SkIRect dimensionsAsBounds = SkIRect::MakeSize(dimensions);
9 SkDebugf("dimensionsAsBounds %c= bounds\n", dimensionsAsBounds == bounds ? '=' : '!');
10}
11} // END FIDDLE
REG_FIDDLE(Image_dimensions, 256, 256, true, 4)
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
SkISize dimensions() const
Definition: SkImage.h:297
SkIRect bounds() const
Definition: SkImage.h:303
Optional< SkRect > bounds
Definition: SkRecords.h:189
sk_sp< const SkImage > image
Definition: SkRecords.h:269
Definition: SkRect.h:32
static constexpr SkIRect MakeSize(const SkISize &size)
Definition: SkRect.h:66
Definition: SkSize.h:16