Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / gm / cgms.cpp
1 /*
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/gm.h"
9 #include "include/c/sk_types.h"
10
11 class SkCanvas;
12
13 extern "C" void sk_test_c_api(sk_canvas_t*);
14
15 DEF_SIMPLE_GM(c_gms, canvas, 640, 480) {
16     sk_test_c_api((sk_canvas_t*)canvas);
17 }