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

Go to the source code of this file.

Functions

 REG_FIDDLE (Surface_WrapPixels_WithReleaseProc, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Surface_WrapPixels_WithReleaseProc  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Surface_MakeRasterDirectReleaseProc.cpp.

5 {
6 static void release_direct_surface_storage(void* pixels, void* context) {
7 if (pixels == context) {
8 SkDebugf("expected release context\n");
9 }
10 sk_free(pixels);
11 }
12
13 void draw(SkCanvas*) {
15 const size_t rowBytes = info.minRowBytes();
16 void* pixels = sk_malloc_throw(info.computeByteSize(rowBytes));
18 info, pixels, rowBytes, release_direct_surface_storage, pixels));
19 SkCanvas* canvas = surface->getCanvas();
20 canvas->clear(SK_ColorWHITE);
21 SkPMColor* colorPtr = (SkPMColor*)pixels;
22 SkPMColor pmWhite = colorPtr[0];
24 canvas->drawPoint(1, 1, paint);
25 for (int y = 0; y < info.height(); ++y) {
26 for (int x = 0; x < info.width(); ++x) {
27 SkDebugf("%c", *colorPtr++ == pmWhite ? '-' : 'x');
28 }
29 SkDebugf("\n");
30 }
31 }
32} // 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
SK_API void sk_free(void *)
static void * sk_malloc_throw(size_t size)
Definition SkMalloc.h:67
static void release_direct_surface_storage(void *pixels, void *context)
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 Paint & paint
VkSurfaceKHR surface
Definition main.cc:49
double y
double x
SK_API sk_sp< SkSurface > WrapPixels(const SkImageInfo &imageInfo, void *pixels, size_t rowBytes, const SkSurfaceProps *surfaceProps=nullptr)
static SkImageInfo MakeN32Premul(int width, int height)