blob: bebcd1a723952d7bd871d9ffe7d5b41f3b859fd9 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
John Stilesfbd050b2020-08-03 13:21:46 -04003#include <memory>
4
Mike Kleinc0bd9f92019-04-23 12:05:21 -05005#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04006// HASH=4486d0c0b22ad2931db130f42da4c80c
Hal Canarya7181e7c2019-03-18 16:06:34 -04007REG_FIDDLE(Canvas_accessTopRasterHandle, 256, 256, true, 0) {
Hal Canary87515122019-03-15 14:22:51 -04008static void DeleteCallback(void*, void* context) {
9 delete (char*) context;
10}
11class CustomAllocator : public SkRasterHandleAllocator {
12public:
13 bool allocHandle(const SkImageInfo& info, Rec* rec) override {
14 char* context = new char[4]{'s', 'k', 'i', 'a'};
15 rec->fReleaseProc = DeleteCallback;
16 rec->fReleaseCtx = context;
17 rec->fHandle = context;
18 rec->fPixels = context;
19 rec->fRowBytes = 4;
20 return true;
21 }
22 void updateHandle(Handle handle, const SkMatrix& ctm, const SkIRect& clip_bounds) override {
23 // apply canvas matrix and clip to custom environment
24 }
25};
26
27void draw(SkCanvas* canvas) {
28 const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1);
29 std::unique_ptr<SkCanvas> c2 =
John Stilesfbd050b2020-08-03 13:21:46 -040030 SkRasterHandleAllocator::MakeCanvas(std::make_unique<CustomAllocator>(), info);
Hal Canary87515122019-03-15 14:22:51 -040031 char* context = (char*) c2->accessTopRasterHandle();
32 SkDebugf("context = %.4s\n", context);
33}
34} // END FIDDLE