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

Go to the source code of this file.

Functions

 REG_FIDDLE (Canvas_MakeRasterDirectN32, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Canvas_MakeRasterDirectN32  ,
256  ,
256  ,
true  ,
 
)

Definition at line 4 of file Canvas_MakeRasterDirectN32.cpp.

4 {
5void draw(SkCanvas* ) {
6 const int width = 3;
7 const int height = 3;
8 SkPMColor pixels[height][width]; // allocate a 3 by 3 Premultiplied bitmap on the stack
9 // create a SkCanvas backed by a raster device, and delete it when the
10 // function goes out of scope.
11 std::unique_ptr<SkCanvas> canvas = SkCanvas::MakeRasterDirectN32(
12 width,
13 height,
14 pixels[0], // top-left of the bitmap
15 sizeof(pixels[0])); // byte width of the each row
16 // write a Premultiplied value for white into all pixels in the bitmap
17 canvas->clear(SK_ColorWHITE);
18 SkPMColor pmWhite = pixels[0][0]; // the Premultiplied format may vary
19 SkPaint paint; // by default, draws black
20 canvas->drawPoint(1, 1, paint); // draw in the center
21 for (int y = 0; y < height; ++y) {
22 for (int x = 0; x < width; ++x) {
23 SkDebugf("%c", pixels[y][x] == pmWhite ? '-' : 'x');
24 }
25 SkDebugf("\n");
26 }
27}
28} // END FIDDLE
uint32_t SkPMColor
Definition: SkColor.h:205
constexpr SkColor SK_ColorWHITE
Definition: SkColor.h:122
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
static std::unique_ptr< SkCanvas > MakeRasterDirectN32(int width, int height, SkPMColor *pixels, size_t rowBytes)
Definition: SkCanvas.h:163
const Paint & paint
Definition: color_source.cc:38
double y
double x
int32_t height
int32_t width