Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
fiddle.cpp
Go to the documentation of this file.
1/*
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*) {}
static void draw(SkCanvas *canvas)
Definition fiddle.cpp:15
#define DEF_SIMPLE_GM(NAME, CANVAS, W, H)
Definition gm.h:50