blob: 832a7b50fd741b3fd9e2c9d6b2eeb8064fbe5ec0 [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
8#include "gm.h"
9#include "sk_types.h"
10
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}