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

Go to the source code of this file.

Functions

 REG_FIDDLE (Color_Type_RGB_565, 256, 96, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Color_Type_RGB_565  ,
256  ,
96  ,
false  ,
 
)

Definition at line 5 of file Color_Type_RGB_565.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 canvas->scale(16, 16);
10 bitmap.allocPixels(imageInfo);
11 SkCanvas offscreen(bitmap);
12 offscreen.clear(SK_ColorGREEN);
13 canvas->drawImage(bitmap.asImage(), 0, 0);
14 auto pack565 = [](unsigned r, unsigned g, unsigned b) -> uint16_t {
15 return (b << 0) | (g << 5) | (r << 11);
16 };
17 uint16_t red565[] = { pack565(0x1F, 0x00, 0x00), pack565(0x17, 0x00, 0x00),
18 pack565(0x0F, 0x00, 0x00), pack565(0x07, 0x00, 0x00) };
19 uint16_t blue565[] = { pack565(0x00, 0x00, 0x1F), pack565(0x00, 0x00, 0x17),
20 pack565(0x00, 0x00, 0x0F), pack565(0x00, 0x00, 0x07) };
21 SkPixmap redPixmap(imageInfo, &red565, imageInfo.minRowBytes());
22 if (bitmap.writePixels(redPixmap, 0, 0)) {
23 canvas->drawImage(bitmap.asImage(), 2, 2);
24 }
25 SkPixmap bluePixmap(imageInfo, &blue565, imageInfo.minRowBytes());
26 if (bitmap.writePixels(bluePixmap, 0, 0)) {
27 canvas->drawImage(bitmap.asImage(), 4, 4);
28 }
29}
30} // END FIDDLE
@ kOpaque_SkAlphaType
pixel is opaque
Definition SkAlphaType.h:28
@ kRGB_565_SkColorType
pixel with 5 bits red, 6 bits green, 5 bits blue, in 16-bit word
Definition SkColorType.h:22
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
size_t minRowBytes() const
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)