blob: f00f41c2526b47cf6d876a2c350ba59cd3ef18ae [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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=4486d0c0b22ad2931db130f42da4c80c
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Canvas_accessTopRasterHandle, 256, 256, true, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006static 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