mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-22 10:20:11 +01:00
105 lines
2.6 KiB
C
105 lines
2.6 KiB
C
|
|
/*
|
|||
|
|
* $XFree86: $
|
|||
|
|
*
|
|||
|
|
* Copyright <EFBFBD> 2002 Carl D. Worth
|
|||
|
|
*
|
|||
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|||
|
|
* and its documentation for any purpose is hereby granted without
|
|||
|
|
* fee, provided that the above copyright notice appear in all copies
|
|||
|
|
* and that both that copyright notice and this permission notice
|
|||
|
|
* appear in supporting documentation, and that the name of Carl
|
|||
|
|
* D. Worth not be used in advertising or publicity pertaining to
|
|||
|
|
* distribution of the software without specific, written prior
|
|||
|
|
* permission. Carl D. Worth makes no representations about the
|
|||
|
|
* suitability of this software for any purpose. It is provided "as
|
|||
|
|
* is" without express or implied warranty.
|
|||
|
|
*
|
|||
|
|
* CARL D. WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|||
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|||
|
|
* FITNESS, IN NO EVENT SHALL CARL D. WORTH BE LIABLE FOR ANY SPECIAL,
|
|||
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|||
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|||
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|||
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <stdlib.h>
|
|||
|
|
#include "xrint.h"
|
|||
|
|
|
|||
|
|
#define XR_POLYGON_GROWTH_INC 10
|
|||
|
|
|
|||
|
|
/* private functions */
|
|||
|
|
|
|||
|
|
static void
|
|||
|
|
_XrPolygonGrowBy(XrPolygon *poly, int additional);
|
|||
|
|
|
|||
|
|
void
|
|||
|
|
XrPolygonInit(XrPolygon *poly)
|
|||
|
|
{
|
|||
|
|
poly->num_edges = 0;
|
|||
|
|
|
|||
|
|
poly->edges_size = 0;
|
|||
|
|
poly->edges = NULL;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void
|
|||
|
|
XrPolygonDeinit(XrPolygon *poly)
|
|||
|
|
{
|
|||
|
|
if (poly->edges_size) {
|
|||
|
|
free(poly->edges);
|
|||
|
|
poly->edges_size = 0;
|
|||
|
|
poly->num_edges = 0;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
static void
|
|||
|
|
_XrPolygonGrowBy(XrPolygon *poly, int additional)
|
|||
|
|
{
|
|||
|
|
XrEdge *new_edges;
|
|||
|
|
int old_size = poly->edges_size;
|
|||
|
|
int new_size = poly->num_edges + additional;
|
|||
|
|
|
|||
|
|
if (new_size <= poly->edges_size) {
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
poly->edges_size = new_size;
|
|||
|
|
new_edges = realloc(poly->edges, poly->edges_size * sizeof(XrEdge));
|
|||
|
|
|
|||
|
|
if (new_edges) {
|
|||
|
|
poly->edges = new_edges;
|
|||
|
|
} else {
|
|||
|
|
/* XXX: BUG: How do we really want to handle this out of memory error? */
|
|||
|
|
poly->edges_size = old_size;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void
|
|||
|
|
XrPolygonAddEdge(void *closure, XPointFixed *p1, XPointFixed *p2)
|
|||
|
|
{
|
|||
|
|
XrEdge *edge;
|
|||
|
|
XrPolygon *poly = closure;
|
|||
|
|
|
|||
|
|
/* drop horizontal edges */
|
|||
|
|
if (p1->y == p2->y) {
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (poly->num_edges >= poly->edges_size) {
|
|||
|
|
_XrPolygonGrowBy(poly, XR_POLYGON_GROWTH_INC);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
edge = &poly->edges[poly->num_edges];
|
|||
|
|
if (p1->y < p2->y) {
|
|||
|
|
edge->edge.p1 = *p1;
|
|||
|
|
edge->edge.p2 = *p2;
|
|||
|
|
edge->clockWise = True;
|
|||
|
|
} else {
|
|||
|
|
edge->edge.p1 = *p2;
|
|||
|
|
edge->edge.p2 = *p1;
|
|||
|
|
edge->clockWise = False;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
poly->num_edges++;
|
|||
|
|
}
|