summaryrefslogtreecommitdiff
path: root/cairosdl.h
blob: 53c94302e6c111d6ff1128dee7fda86ae8ca5271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#ifndef CAIROSDL_H
#define CAIROSDL_H
/*
 * Copyright (c) 2009  M Joonas Pihlaja
 *
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */
#include <cairo.h>
#include <SDL.h>

#ifdef __cplusplus
extern "C" {
#endif

/* All cairo and cairosdl functions expect the underlying SDL_Surface
 * to be locked or not need locking.  The underlying condition is that
 * the ->pixels member of the SDL_Surface should be valid and not
 * change during the lifetime of the cairo_surface_t representing it,
 * and that malloc and whatever other OS facilities are allowed to be
 * called. */

/* Create a cairo image surface and bind the SDL_Surface to it.  If
 * the pixel format of the SDL_Surface isn't supported by cairo,
 * returns a surface in CAIRO_STATUS_INVALID_FORMAT error state. */
cairo_surface_t *
cairosdl_surface_create (SDL_Surface *sdl_surface);

/* Returns the SDL_Surface bound to the image surface. */
SDL_Surface *
cairosdl_surface_get_target (cairo_surface_t *surface);


/* These functions are noops for Amask=0 surfaces.  For
 * Amask=0xFF000000 surfaces they write the indicated area(s) of the
 * SDL_Surface bound to the surface from a backing buffer. */
void
cairosdl_surface_flush_rects (cairo_surface_t *surface,
                              int              num_rects,
                              SDL_Rect const  *rects);

void
cairosdl_surface_flush_rect (cairo_surface_t *surface,
                             int              x,
                             int              y,
                             int              width,
                             int              height);

void
cairosdl_surface_flush (cairo_surface_t *surface);


/* These functions are noops for Amask=0 surfaces.  For
 * Amask=0xFF000000 surfaces they read the indicated area(s) from the
 * SDL_Surface bound to the surface into a backing buffer. */
void
cairosdl_surface_mark_dirty_rects (cairo_surface_t *surface,
                                   int              num_rects,
                                   SDL_Rect const  *rects);

void
cairosdl_surface_mark_dirty_rect (cairo_surface_t *surface,
                                  int              x,
                                  int              y,
                                  int              width,
                                  int              height);

void
cairosdl_surface_mark_dirty (cairo_surface_t *surface);


/* Context convenience functions. */

/* Equivalent to cairo_create(cairosdl_surface_create(sdl_surface)); */
cairo_t *
cairosdl_create (SDL_Surface *sdl_surface);

/* Equivalent to cairosdl_surface_get_target(cairo_get_target(cr));  */
SDL_Surface *
cairosdl_get_target (cairo_t *cr);

/* Calls cairosdl_surface_flush() on the target of the cairo context
 * and then destroys the context. */
void
cairosdl_destroy (cairo_t *cr);


/* Cairo pixel configuration.  This isn't tweakable, it just is. */
#define CAIROSDL_ASHIFT 24
#define CAIROSDL_RSHIFT 16
#define CAIROSDL_GSHIFT  8
#define CAIROSDL_BSHIFT  0
#define CAIROSDL_AMASK (255U << CAIROSDL_ASHIFT)
#define CAIROSDL_RMASK (255U << CAIROSDL_RSHIFT)
#define CAIROSDL_GMASK (255U << CAIROSDL_GSHIFT)
#define CAIROSDL_BMASK (255U << CAIROSDL_BSHIFT)

#ifdef __cplusplus
}
#endif
#endif /* CAIROSDL_H */