647a6d7e1e6b0730cd2962e8005a7f399e2f0115
[framework/graphics/cairo.git] / TC / perf / common.h
1 /*
2  * Cairo Performance Test Framework
3  * (c) 2012 Samsung Electronics, Inc.
4  * All rights reserved.
5  *
6  * Measures rendering performance for image, gl backends
7  *
8  * This software is a confidential and proprietary information of Samsung
9  * Electronics, Inc. ("Confidential Information"). You shall not disclose such
10  * Confidential Information and shall use it only in accordance with the terms
11  * of the license agreement you entered into with Samsung Electronics.
12  *
13  * Author: Dongyeon Kim <dy5.kim@samsung.com>
14  */
15
16 #include <Ecore_X.h>
17 #include <Elementary.h>
18 #include <cairo.h>
19 #include <cairo-gl.h>
20
21 void clearCairo(cairo_t *cr, double width, double height);
22 void cairoSquare(cairo_t *cr, double x, double y, double length);
23 void cairoSquareStroke(cairo_t *cr, double x, double y, double length);
24 void cairoCircle(cairo_t *cr, double x, double y, double radius);
25 void cairoCircleStroke(cairo_t *cr, double x, double y, double radius);
26 void cairoTriangle(cairo_t *cr, double x, double y, double side);
27 void cairoTriangleStroke(cairo_t *cr, double x, double y, double side);
28