blob: b7dda33e9cfe03fa7c1a0cc920f2c748cc8df71a [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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 "fiddle/examples.h"
4// HASH=d5547cd2b302822aa85b7b0ae3f48458
5REG_FIDDLE(ImageInfo_033, 256, 256, true, 0) {
6void 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