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.
3 #include "tools/fiddle/examples.h"
4 // HASH=d5547cd2b302822aa85b7b0ae3f48458
REG_FIDDLE(ImageInfo_dimensions, 256, 256, true, 0)5 REG_FIDDLE(ImageInfo_dimensions, 256, 256, true, 0) {
6 void draw(SkCanvas* canvas) {
7 const int height = 2;
8 const int width = 2;
9 SkImageInfo imageInfo = SkImageInfo::Make(width, height, kN32_SkColorType, kPremul_SkAlphaType);
10 SkISize dimensions = imageInfo.dimensions();
11 SkIRect bounds = imageInfo.bounds();
12 SkIRect dimensionsAsBounds = SkIRect::MakeSize(dimensions);
13 SkDebugf("dimensionsAsBounds %c= bounds\n", dimensionsAsBounds == bounds ? '=' : '!');
14 }
15 } // END FIDDLE
16