Rename GP_Context -> GP_Pixmap
[gfxprim.git] / libs / gfx / GP_VLine.c
blobe3ee1a77f4b7e25ee411065045c5d1016d894fb2
1 /*****************************************************************************
2 * This file is part of gfxprim library. *
3 * *
4 * Gfxprim is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU Lesser General Public *
6 * License as published by the Free Software Foundation; either *
7 * version 2.1 of the License, or (at your option) any later version. *
8 * *
9 * Gfxprim 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 * Lesser General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Lesser General Public *
15 * License along with gfxprim; if not, write to the Free Software *
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
17 * Boston, MA 02110-1301 USA *
18 * *
19 * Copyright (C) 2009-2011 Jiri "BlueBear" Dluhos *
20 * <jiri.bluebear.dluhos@gmail.com> *
21 * *
22 * Copyright (C) 2009-2012 Cyril Hrubis <metan@ucw.cz> *
23 * *
24 *****************************************************************************/
26 #include "core/GP_Common.h"
27 #include "core/GP_GetPutPixel.h"
28 #include "core/GP_FnPerBpp.h"
30 #include "gfx/GP_VLine.h"
31 #include "gfx/GP_HLine.h"
34 * Ensures that coordinates are in correct order, and clips them.
35 * Exits immediately if the line is completely clipped out.
37 #define ORDER_AND_CLIP_COORDS do { \
38 if (y0 > y1) \
39 GP_SWAP(y0, y1); \
40 if (x < 0 || x >= (int) pixmap->w || \
41 y1 < 0 || y0 >= (int) pixmap->h) \
42 return; \
43 y0 = GP_MAX(y0, 0); \
44 y1 = GP_MIN(y1, (int) pixmap->h - 1); \
45 } while (0)
47 void GP_VLineXYY_Raw(GP_Pixmap *pixmap, GP_Coord x, GP_Coord y0,
48 GP_Coord y1, GP_Pixel pixel)
50 GP_CHECK_PIXMAP(pixmap);
52 ORDER_AND_CLIP_COORDS;
54 GP_FN_PER_BPP_PIXMAP(GP_VLine_Raw, pixmap, pixmap, x, y0, y1, pixel);
57 void GP_VLineXYH_Raw(GP_Pixmap *pixmap, GP_Coord x, GP_Coord y, GP_Size h,
58 GP_Pixel pixel)
60 if (h == 0)
61 return;
63 GP_VLineXYY(pixmap, x, y, y + h - 1, pixel);
66 void GP_VLineXYY(GP_Pixmap *pixmap, GP_Coord x, GP_Coord y0,
67 GP_Coord y1, GP_Pixel pixel)
69 GP_CHECK_PIXMAP(pixmap);
71 if (pixmap->axes_swap) {
72 GP_TRANSFORM_Y(pixmap, x);
73 GP_TRANSFORM_X(pixmap, y0);
74 GP_TRANSFORM_X(pixmap, y1);
75 GP_HLine_Raw(pixmap, y0, y1, x, pixel);
76 } else {
77 GP_TRANSFORM_X(pixmap, x);
78 GP_TRANSFORM_Y(pixmap, y0);
79 GP_TRANSFORM_Y(pixmap, y1);
80 GP_VLine_Raw(pixmap, x, y0, y1, pixel);
84 void GP_VLineXYH(GP_Pixmap *pixmap, GP_Coord x, GP_Coord y, GP_Size h,
85 GP_Pixel pixel)
87 if (h == 0)
88 return;
90 GP_VLineXYY(pixmap, x, y, y + h - 1, pixel);