Update change log.
[platform/upstream/cairo.git] / boilerplate / cairo-boilerplate-drm.c
1 /* Cairo - a vector graphics library with display and print output
2  *
3  * Copyright © 2009 Chris Wilson
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it either under the terms of the GNU Lesser General Public
7  * License version 2.1 as published by the Free Software Foundation
8  * (the "LGPL") or, at your option, under the terms of the Mozilla
9  * Public License Version 1.1 (the "MPL"). If you do not alter this
10  * notice, a recipient may use your version of this file under either
11  * the MPL or the LGPL.
12  *
13  * You should have received a copy of the LGPL along with this library
14  * in the file COPYING-LGPL-2.1; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
16  * You should have received a copy of the MPL along with this library
17  * in the file COPYING-MPL-1.1
18  *
19  * The contents of this file are subject to the Mozilla Public License
20  * Version 1.1 (the "License"); you may not use this file except in
21  * compliance with the License. You may obtain a copy of the License at
22  * http://www.mozilla.org/MPL/
23  *
24  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
25  * OF ANY KIND, either express or implied. See the LGPL or the MPL for
26  * the specific language governing rights and limitations.
27  *
28  * The Original Code is the cairo graphics library.
29  *
30  * The Initial Developer of the Original Code is Chris Wilson.
31  */
32
33 #include "cairo-boilerplate-private.h"
34
35 #include <cairo-drm.h>
36
37 static cairo_surface_t *
38 _cairo_boilerplate_drm_create_surface (const char                *name,
39                                        cairo_content_t            content,
40                                        double                     width,
41                                        double                     height,
42                                        double                     max_width,
43                                        double                     max_height,
44                                        cairo_boilerplate_mode_t   mode,
45                                        void                     **closure)
46 {
47     cairo_device_t *device;
48     cairo_format_t format;
49
50     device = cairo_drm_device_default ();
51     if (device == NULL)
52         return NULL; /* skip tests if no supported h/w found */
53
54     switch (content) {
55     case CAIRO_CONTENT_ALPHA: format = CAIRO_FORMAT_A8; break;
56     case CAIRO_CONTENT_COLOR: format = CAIRO_FORMAT_RGB24; break;
57     default:
58     case CAIRO_CONTENT_COLOR_ALPHA: format = CAIRO_FORMAT_ARGB32; break;
59     }
60
61     return *closure = cairo_drm_surface_create (device, format, width, height);
62 }
63
64 static void
65 _cairo_boilerplate_drm_synchronize (void *closure)
66 {
67     cairo_surface_t *image;
68
69     image = cairo_drm_surface_map_to_image (closure);
70     if (cairo_surface_status (image) == CAIRO_STATUS_SUCCESS)
71         cairo_drm_surface_unmap (closure, image);
72 }
73
74 static const cairo_boilerplate_target_t targets[] = {
75     /* Acceleration architectures may make the results differ by a
76      * bit, so we set the error tolerance to 1. */
77     {
78         "drm", "drm", NULL, NULL,
79         CAIRO_SURFACE_TYPE_DRM, CAIRO_CONTENT_COLOR_ALPHA, 1,
80         "cairo_drm_surface_create",
81         _cairo_boilerplate_drm_create_surface,
82         cairo_surface_create_similar,
83         NULL, NULL,
84         _cairo_boilerplate_get_image_surface,
85         cairo_surface_write_to_png,
86         NULL,
87         _cairo_boilerplate_drm_synchronize,
88         NULL,
89         TRUE, FALSE, FALSE
90     },
91     {
92         "drm", "drm", NULL, NULL,
93         CAIRO_SURFACE_TYPE_DRM, CAIRO_CONTENT_COLOR, 1,
94         "cairo_drm_surface_create",
95         _cairo_boilerplate_drm_create_surface,
96         cairo_surface_create_similar,
97         NULL, NULL,
98         _cairo_boilerplate_get_image_surface,
99         cairo_surface_write_to_png,
100         NULL,
101         _cairo_boilerplate_drm_synchronize,
102         NULL,
103         FALSE, FALSE, FALSE
104     },
105 };
106 CAIRO_BOILERPLATE (drm, targets)