Rename GP_Context -> GP_Pixmap
[gfxprim.git] / include / gfx / GP_Gfx.h
blob12a06d26367aaad6c61283b400587261a8b8bb31
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-2010 Jiri "BlueBear" Dluhos *
20 * <jiri.bluebear.dluhos@gmail.com> *
21 * *
22 * Copyright (C) 2009-2013 Cyril Hrubis <metan@ucw.cz> *
23 * *
24 *****************************************************************************/
28 This is a main header for gfx part.
32 #ifndef GP_GFX_H
33 #define GP_GFX_H
35 /* basic definitions and structures */
36 #include "core/GP_Pixmap.h"
37 #include "core/GP_GetPutPixel.h"
38 #include "core/GP_WritePixel.h"
39 #include "core/GP_Fill.h"
41 /* public drawing API */
42 #include "GP_HLine.h"
43 #include "GP_VLine.h"
44 #include "GP_Line.h"
45 #include "GP_Rect.h"
46 #include "GP_Triangle.h"
47 #include "GP_Tetragon.h"
48 #include "GP_Circle.h"
49 #include "GP_CircleSeg.h"
50 #include "GP_Ellipse.h"
51 #include "GP_Arc.h"
52 #include "GP_Polygon.h"
54 #include "GP_PutPixelAA.h"
55 #include "GP_VLineAA.h"
56 #include "GP_HLineAA.h"
57 #include "GP_LineAA.h"
59 #endif /* GP_GFX_H */