blob: e40b25749ca2b13770e8fa3da686063495023d24 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#include "fiddle/examples.h"
4// HASH=4486d0c0b22ad2931db130f42da4c80c
5REG_FIDDLE(Canvas_015, 256, 256, true, 0) {
6static void DeleteCallback(void*, void* context) {
7 delete (char*) context;
8}
9class CustomAllocator : public SkRasterHandleAllocator {
10public:
11 bool allocHandle(const SkImageInfo& info, Rec* rec) override {
12 char* context = new char[4]{'s', 'k', 'i', 'a'};
13 rec->fReleaseProc = DeleteCallback;
14 rec->fReleaseCtx = context;
15 rec->fHandle = context;
16 rec->fPixels = context;
17 rec->fRowBytes = 4;
18 return true;
19 }
20 void updateHandle(Handle handle, const SkMatrix& ctm, const SkIRect& clip_bounds) override {
21 // apply canvas matrix and clip to custom environment
22 }
23};
24
25void draw(SkCanvas* canvas) {
26 const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1);
27 std::unique_ptr<SkCanvas> c2 =
28 SkRasterHandleAllocator::MakeCanvas(std::unique_ptr<CustomAllocator>(
29 new CustomAllocator()), info);
30 char* context = (char*) c2->accessTopRasterHandle();
31 SkDebugf("context = %.4s\n", context);
32}
33} // END FIDDLE