blob: 1736b39a361fe468d37f0c13ca34a0eb6bdbdc4f [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=d77790dd3bc9f678fa4f582347fb8fba
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Surface_writePixels_2, 256, 96, false, 4) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64));
8 auto surfCanvas = surf->getCanvas();
9 surfCanvas->clear(SK_ColorGREEN);
10 surf->writePixels(source, 25, 25);
11 sk_sp<SkImage> image(surf->makeImageSnapshot());
12 canvas->drawImage(image, 0, 0);
13}
14} // END FIDDLE