Flutter Engine
The Flutter Engine
ImageInfo_equal1_operator.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(ImageInfo_equal1_operator, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
8 SkDebugf("info1 %c= info2\n", info1 == info2 ? '=' : '!');
9 info2 = info2.makeWH(10, 20);
10 SkDebugf("info1 %c= info2\n", info1 == info2 ? '=' : '!');
12 SkDebugf("info1 %c= info2\n", info1 == info2 ? '=' : '!');
14 SkDebugf("info1 %c= info2\n", info1 == info2 ? '=' : '!');
15}
16} // END FIDDLE
REG_FIDDLE(ImageInfo_equal1_operator, 256, 256, true, 0)
kUnpremul_SkAlphaType
@ kPremul_SkAlphaType
pixel components are premultiplied by alpha
Definition: SkAlphaType.h:29
@ kAlpha_8_SkColorType
pixel with alpha in 8-bit byte
Definition: SkColorType.h:21
@ kGray_8_SkColorType
pixel with grayscale level in 8-bit byte
Definition: SkColorType.h:35
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
SkImageInfo makeWH(int newWidth, int newHeight) const
Definition: SkImageInfo.h:444
SkImageInfo makeAlphaType(SkAlphaType newAlphaType) const
Definition: SkImageInfo.h:466
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)
SkImageInfo makeColorType(SkColorType newColorType) const
Definition: SkImageInfo.h:475