Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
gpu8888diff.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (gpu8888diff, 256, 256, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( gpu8888diff  ,
256  ,
256  ,
false  ,
 
)

Definition at line 4 of file gpu8888diff.cpp.

4 {
5void draw(SkCanvas* canvas) {
6 canvas->scale(16, 16);
8 SkImageInfo imageInfo =
10 bitmap.allocPixels(imageInfo);
11 SkCanvas offscreen(bitmap);
12 offscreen.clear(SK_ColorGREEN);
13 canvas->drawImage(bitmap.asImage(), 0, 0);
14 offscreen.clear(SK_ColorGRAY);
15 canvas->drawImage(bitmap.asImage(), 2, 2);
16 auto pack8888 = [](unsigned a, unsigned r, unsigned g, unsigned b) -> uint32_t {
17 return (a << 24) | (b << 16) | (g << 8) | (r << 0);
18 };
19 uint32_t red8888[] = {pack8888(0xFF, 0xFF, 0x0, 0x0), pack8888(0xFF, 0xbb, 0x0, 0x0),
20 pack8888(0xFF, 0x99, 0x0, 0x0), pack8888(0xFF, 0x55, 0x0, 0x0)};
21 uint32_t blue8888[] = {pack8888(0xFF, 0x0, 0x0, 0x0FF), pack8888(0xFF, 0x0, 0x0, 0x0bb),
22 pack8888(0xFF, 0x0, 0x0, 0x099), pack8888(0xFF, 0x0, 0x0, 0x055)};
23 SkPixmap redPixmap(imageInfo, &red8888, 8);
24 if (bitmap.writePixels(redPixmap, 0, 0)) {
25 canvas->drawImage(bitmap.asImage(), 4, 4);
26 }
27 SkPixmap bluePixmap(imageInfo, &blue8888, 8);
28 if (bitmap.writePixels(bluePixmap, 0, 0)) {
29 canvas->drawImage(bitmap.asImage(), 6, 6);
30 }
31}
32} // END FIDDLE
@ kPremul_SkAlphaType
pixel components are premultiplied by alpha
Definition SkAlphaType.h:29
@ kRGBA_8888_SkColorType
pixel with 8 bits for red, green, blue, alpha; in 32-bit word
Definition SkColorType.h:24
constexpr SkColor SK_ColorGRAY
Definition SkColor.h:113
constexpr SkColor SK_ColorGREEN
Definition SkColor.h:131
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
static bool b
struct MyStruct a[10]
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)