]>
Dogcows Code - chaz/openbox/blob - render/image.c
2 #include "../kernel/geom.h"
5 void image_draw(pixel32
*target
, TextureRGBA
*rgba
, Rect
*position
,
8 pixel32
*draw
= rgba
->data
;
9 guint c
, i
, e
, t
, sfw
, sfh
;
10 sfw
= position
->width
;
11 sfh
= position
->height
;
13 /* it would be nice if this worked, but this function is well broken in
14 these circumstances. */
15 g_assert(position
->width
== surarea
->width
&&
16 position
->height
== surarea
->height
);
18 g_assert(rgba
->data
!= NULL
);
20 if ((rgba
->width
!= sfw
|| rgba
->height
!= sfh
) &&
21 (rgba
->width
!= rgba
->cwidth
|| rgba
->height
!= rgba
->cheight
)) {
22 double dx
= rgba
->width
/ (double)sfw
;
23 double dy
= rgba
->height
/ (double)sfh
;
28 /* scale it and cache it */
29 if (rgba
->cache
!= NULL
)
31 rgba
->cache
= g_new(unsigned long, sfw
* sfh
);
34 for (i
= 0, c
= 0, e
= sfw
*sfh
; i
< e
; ++i
) {
35 rgba
->cache
[i
] = rgba
->data
[(int)px
+ iy
];
40 iy
= (int)py
* rgba
->width
;
45 /* do we use the cache we may have just created, or the original? */
46 if (rgba
->width
!= sfw
|| rgba
->height
!= sfh
)
49 /* apply the alpha channel */
50 for (i
= 0, c
= 0, t
= position
->x
, e
= sfw
*sfh
; i
< e
; ++i
, ++t
) {
51 guchar alpha
, r
, g
, b
, bgr
, bgg
, bgb
;
53 alpha
= draw
[i
] >> default_alpha_offset
;
54 r
= draw
[i
] >> default_red_offset
;
55 g
= draw
[i
] >> default_green_offset
;
56 b
= draw
[i
] >> default_blue_offset
;
60 t
+= surarea
->width
- sfw
;
63 /* background color */
64 bgr
= target
[t
] >> default_red_offset
;
65 bgg
= target
[t
] >> default_green_offset
;
66 bgb
= target
[t
] >> default_blue_offset
;
68 r
= bgr
+ (((r
- bgr
) * alpha
) >> 8);
69 g
= bgg
+ (((g
- bgg
) * alpha
) >> 8);
70 b
= bgb
+ (((b
- bgb
) * alpha
) >> 8);
72 target
[t
] = (r
<< default_red_offset
)
73 | (g
<< default_green_offset
)
74 | (b
<< default_blue_offset
);
This page took 0.041453 seconds and 4 git commands to generate.