blob: e45f3709a15766da7035d23186f228b6fff644da [file] [log] [blame]
reedafa278e2014-11-24 19:11:48 -08001/*
2 * Copyright 2014 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
9#include "include/c/sk_types.h"
reedafa278e2014-11-24 19:11:48 -080010
Ben Wagner7fde8e12019-05-01 17:28:53 -040011class SkCanvas;
12
reedafa278e2014-11-24 19:11:48 -080013extern "C" void sk_test_c_api(sk_canvas_t*);
14
halcanary80a1c542015-07-31 15:16:23 -070015DEF_SIMPLE_GM(c_gms, canvas, 640, 480) {
16 sk_test_c_api((sk_canvas_t*)canvas);
17}