Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Pixmap_writable_addr16.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=6da54774f6432b46b47ea9013c15f280
5REG_FIDDLE(Pixmap_writable_addr16, 256, 64, false, 0) {
6void draw(SkCanvas* canvas) {
7 uint16_t storage[][5] = {{ 0xCABF, 0xDABE, 0xCA9D, 0xC96C, 0xA39B },
8 { 0xACEE, 0xA87C, 0x893A, 0x4779, 0x8708 },
9 { 0x4B7C, 0x255B, 0x2559, 0x2557, 0x4656 },
10 { 0x9099, 0x8128, 0x2557, 0x4124, 0x3323 },
11 { 0x7547, 0x5505, 0x4434, 0x2012, 0x0000 }};
13 SkPixmap pixmap(imageInfo, storage[0], sizeof(storage) / 5);
15 bitmap.installPixels(pixmap);
16 canvas->scale(10, 10);
17 canvas->drawImage(bitmap.asImage(), 0, 0);
18 *pixmap.writable_addr16(2, 2) = 0x000F;
19 bitmap.installPixels(pixmap);
20 canvas->drawImage(bitmap.asImage(), 10, 0);
21}
22} // END FIDDLE
@ kPremul_SkAlphaType
pixel components are premultiplied by alpha
Definition SkAlphaType.h:29
@ kARGB_4444_SkColorType
pixel with 4 bits for alpha, red, green, blue; in 16-bit word
Definition SkColorType.h:23
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
uint16_t * writable_addr16(int x, int y) const
Definition SkPixmap.h:522
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)