Flutter Engine
The Flutter Engine
Functions
Bitmap_getColor.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Bitmap_getColor, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Bitmap_getColor  ,
256  ,
256  ,
true  ,
 
)

Definition at line 4 of file Bitmap_getColor.cpp.

4 {
5void draw(SkCanvas* canvas) {
6 const int w = 4;
7 const int h = 4;
8 SkColor colors[][w] = {
9 { 0x00000000, 0x2a0e002a, 0x55380055, 0x7f7f007f },
10 { 0x2a000e2a, 0x551c1c55, 0x7f542a7f, 0xaaaa38aa },
11 { 0x55003855, 0x7f2a547f, 0xaa7171aa, 0xd4d48dd4 },
12 { 0x7f007f7f, 0xaa38aaaa, 0xd48dd4d4, 0xffffffff }
13 };
14 SkDebugf("Premultiplied:\n");
15 for (int y = 0; y < h; ++y) {
16 SkDebugf("(0, %d) ", y);
17 for (int x = 0; x < w; ++x) {
18 SkDebugf("0x%08x%c", colors[y][x], x == w - 1 ? '\n' : ' ');
19 }
20 }
23 bitmap.installPixels(pixmap);
24 SkDebugf("Unpremultiplied:\n");
25 for (int y = 0; y < h; ++y) {
26 SkDebugf("(0, %d) ", y);
27 for (int x = 0; x < w; ++x) {
28 SkDebugf("0x%08x%c", bitmap.getColor(x, y), x == w - 1 ? '\n' : ' ');
29 }
30 }
31}
32} // END FIDDLE
@ kPremul_SkAlphaType
pixel components are premultiplied by alpha
Definition: SkAlphaType.h:29
uint32_t SkColor
Definition: SkColor.h:37
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
double y
double x
PODArray< SkColor > colors
Definition: SkRecords.h:276
Definition: bitmap.py:1
SkScalar w
SkScalar h
static SkImageInfo MakeN32(int width, int height, SkAlphaType at)