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
|
/*
Copyright (C) 2009 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "common.h"
#include "x_platform.h"
#include "pixels_source.h"
#include "pixels_source_p.h"
#include "utils.h"
#include "debug.h"
#include "res.h"
static void create_pixmap(const PixmapHeader* pixmap, PixelsSource_p& pixels_source,
pixman_format_code_t format)
{
pixman_image_t *pixman_image;
pixman_image = pixman_image_create_bits(format,
pixmap->width, pixmap->height,
(uint32_t *)pixmap->data,
pixmap->stride);
if (pixman_image == NULL) {
THROW("surf create failed");
}
pixels_source.type = PIXELS_SOURCE_TYPE_PIXMAP;
pixels_source.pixmap.pixman_image = pixman_image;
pixels_source.pixmap.x_image = NULL;
pixels_source.pixmap.shminfo = NULL;
if (format == PIXMAN_a8r8g8b8) {
pixels_source.pixmap.format = RedDrawable::ARGB32;
} else {
pixels_source.pixmap.format = RedDrawable::RGB32;
}
}
PixelsSource::PixelsSource()
{
_origin.x = _origin.y = 0;
memset(_opaque, 0, sizeof(_opaque));
}
PixelsSource::~PixelsSource()
{
}
ImageFromRes::ImageFromRes(int res_id)
{
const PixmapHeader* pixmap = res_get_image(res_id);
if (!pixmap) {
THROW("no image %d", res_id);
}
create_pixmap(pixmap, *(PixelsSource_p*)get_opaque(), PIXMAN_x8r8g8b8);
}
ImageFromRes::~ImageFromRes()
{
pixman_image_unref(((PixelsSource_p*)get_opaque())->pixmap.pixman_image);
}
SpicePoint ImageFromRes::get_size()
{
pixman_image_t *image = ((PixelsSource_p*)get_opaque())->pixmap.pixman_image;
SpicePoint pt;
pt.x = pixman_image_get_width(image);
pt.y = pixman_image_get_height(image);
return pt;
}
AlphaImageFromRes::AlphaImageFromRes(int res_id)
{
const PixmapHeader* pixmap = res_get_image(res_id);
if (!pixmap) {
THROW("no image %d", res_id);
}
create_pixmap(pixmap, *(PixelsSource_p*)get_opaque(), PIXMAN_a8r8g8b8);
}
AlphaImageFromRes::~AlphaImageFromRes()
{
pixman_image_unref(((PixelsSource_p*)get_opaque())->pixmap.pixman_image);
}
SpicePoint AlphaImageFromRes::get_size()
{
pixman_image_t *image = ((PixelsSource_p*)get_opaque())->pixmap.pixman_image;
SpicePoint pt;
pt.x = pixman_image_get_width(image);
pt.y = pixman_image_get_height(image);
return pt;
}
|