blob: dd57f2faf1a3a3ead56c4ef5d65df53548f7ce5f [file] [log] [blame]
Mike Kleinc4abade2019-08-09 10:11:35 -04001/*
2 * Copyright 2019 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm/gm.h"
9#include "skia.h"
10
11static void draw(SkCanvas* canvas);
12DEF_SIMPLE_GM(fiddle, canvas, 256, 256) { draw(canvas); }
13
14// Paste your fiddle.skia.org code over this stub.
15void draw(SkCanvas*) {}