Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Bitmap_allocPixels.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=555c0f62f96602a9dcd459badcd005e0
5REG_FIDDLE(Bitmap_allocPixels, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
9 bitmap.allocPixels(info, info.width() * info.bytesPerPixel() + 64);
10 SkCanvas offscreen(bitmap);
11 offscreen.scale(.5f, .5f);
12 for (int y : { 0, 64, 128, 192 } ) {
13 offscreen.drawImage(source.asImage(), 0, -y);
14 canvas->drawImage(bitmap.asImage(), 0, y);
15 }
16}
17} // END FIDDLE
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition DM.cpp:213
@ kOpaque_SkAlphaType
pixel is opaque
Definition SkAlphaType.h:28
@ kGray_8_SkColorType
pixel with grayscale level in 8-bit byte
Definition SkColorType.h:35
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
sk_sp< SkImage > asImage() const
Definition SkBitmap.cpp:645
void scale(SkScalar sx, SkScalar sy)
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
SkBitmap source
Definition examples.cpp:28
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
double y
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)