Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Pixmap_writable_addr8.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=809284db136748208b3efc31cd89de29
5REG_FIDDLE(Pixmap_writable_addr8, 256, 64, false, 0) {
6void draw(SkCanvas* canvas) {
7 uint8_t storage[][5] = {{ 0, 0, 64, 0, 0},
8 { 0, 128, 255, 128, 0},
9 {64, 255, 255, 255, 64},
10 { 0, 128, 255, 128, 0},
11 { 0, 0, 64, 0, 0}};
13 SkPixmap pixmap(imageInfo, storage[0], 5);
15 bitmap.installPixels(pixmap);
16 canvas->scale(10, 10);
17 canvas->drawImage(bitmap.asImage(), 0, 0);
18 *pixmap.writable_addr8(2, 2) = 0;
19// bitmap.installPixels(pixmap); // uncomment to fix on GPU
20 canvas->drawImage(bitmap.asImage(), 10, 0);
21}
22} // END FIDDLE
@ kPremul_SkAlphaType
pixel components are premultiplied by alpha
Definition SkAlphaType.h:29
@ 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
void scale(SkScalar sx, SkScalar sy)
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
uint8_t * writable_addr8(int x, int y) const
Definition SkPixmap.h:508
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)