blob: 44ab44386d6163b90d185791d7b6771d7eedae62 [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
11extern "C" void sk_test_c_api(sk_canvas_t*);
12
halcanary80a1c542015-07-31 15:16:23 -070013DEF_SIMPLE_GM(c_gms, canvas, 640, 480) {
14 sk_test_c_api((sk_canvas_t*)canvas);
15}