1 /* Libart_LGPL - library of basic graphic primitives
2 * Copyright (C) 1998 Raph Levien
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 /* Render a sorted vector path into a graymap. */
23 #include "art_gray_svp.h"
25 #include <string.h> /* for memset */
29 #include "art_svp_render_aa.h"
31 typedef struct _ArtGraySVPData ArtGraySVPData
;
33 struct _ArtGraySVPData
{
40 art_gray_svp_callback (void *callback_data
, int y
,
41 int start
, ArtSVPRenderAAStep
*steps
, int n_steps
)
43 ArtGraySVPData
*data
= (ArtGraySVPData
*)callback_data
;
46 int running_sum
= start
;
51 printf ("start = %d", start
);
53 for (k
= 0; k
< n_steps
; k
++)
55 running_sum
+= steps
[k
].delta
;
56 printf (" %d:%d", steps
[k
].x
, running_sum
>> 16);
69 memset (linebuf
, running_sum
>> 16, run_x1
- x0
);
71 for (k
= 0; k
< n_steps
- 1; k
++)
73 running_sum
+= steps
[k
].delta
;
75 run_x1
= steps
[k
+ 1].x
;
77 memset (linebuf
+ run_x0
- x0
, running_sum
>> 16, run_x1
- run_x0
);
79 running_sum
+= steps
[k
].delta
;
81 memset (linebuf
+ run_x1
- x0
, running_sum
>> 16, x1
- run_x1
);
85 memset (linebuf
, running_sum
>> 16, x1
- x0
);
88 data
->buf
+= data
->rowstride
;
92 * art_gray_svp_aa: Render the vector path into the bytemap.
93 * @svp: The SVP to render.
94 * @x0: The view window's left coord.
95 * @y0: The view window's top coord.
96 * @x1: The view window's right coord.
97 * @y1: The view window's bottom coord.
98 * @buf: The buffer where the bytemap is stored.
99 * @rowstride: the rowstride for @buf.
101 * Each pixel gets a value proportional to the area within the pixel
102 * overlapping the (filled) SVP. Pixel (x, y) is stored at:
104 * @buf[(y - * @y0) * @rowstride + (x - @x0)]
106 * All pixels @x0 <= x < @x1, @y0 <= y < @y1 are generated. A
107 * stored value of zero is no coverage, and a value of 255 is full
108 * coverage. The area within the pixel (x, y) is the region covered
109 * by [x..x+1] and [y..y+1].
112 art_gray_svp_aa (const ArtSVP
*svp
,
113 int x0
, int y0
, int x1
, int y1
,
114 art_u8
*buf
, int rowstride
)
119 data
.rowstride
= rowstride
;
122 art_svp_render_aa (svp
, x0
, y0
, x1
, y1
, art_gray_svp_callback
, &data
);