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

Go to the source code of this file.

Functions

 REG_FIDDLE (Surface_MakeRaster, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Surface_MakeRaster  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Surface_MakeRaster.cpp.

5 {
6void draw(SkCanvas* ) {
8 const size_t rowBytes = 64;
10 SkCanvas* canvas = surface->getCanvas();
11 canvas->clear(SK_ColorWHITE);
12 SkPixmap pixmap;
13 if (surface->peekPixels(&pixmap)) {
14 const uint32_t* colorPtr = pixmap.addr32();
15 SkPMColor pmWhite = colorPtr[0];
17 canvas->drawPoint(1, 1, paint);
18 for (int y = 0; y < info.height(); ++y) {
19 for (int x = 0; x < info.width(); ++x) {
20 SkDebugf("%c", colorPtr[x] == pmWhite ? '-' : 'x');
21 }
22 colorPtr += rowBytes / sizeof(colorPtr[0]);
23 SkDebugf("\n");
24 }
25 }
26}
27} // END FIDDLE
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition DM.cpp:213
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
void drawPoint(SkScalar x, SkScalar y, const SkPaint &paint)
void clear(SkColor color)
Definition SkCanvas.h:1199
const uint32_t * addr32() const
Definition SkPixmap.h:352
const Paint & paint
VkSurfaceKHR surface
Definition main.cc:49
double y
double x
SK_API sk_sp< SkSurface > Raster(const SkImageInfo &imageInfo, size_t rowBytes, const SkSurfaceProps *surfaceProps)
static SkImageInfo MakeN32Premul(int width, int height)