Rename GP_Pixel_Access to GP_GetPutPixel
[gfxprim.git] / include / gfx / GP_Gfx.h
blobaa578b4ab3c787496543ad2d68d72f4c864df24b
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-2010 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_Common.h"
37 #include "core/GP_Transform.h"
38 #include "core/GP_Context.h"
39 #include "core/GP_WritePixel.h"
40 #include "core/GP_GetPutPixel.h"
41 #include "core/GP_Color.h"
43 /* public drawing API */
44 #include "GP_Fill.h"
45 #include "GP_HLine.h"
46 #include "GP_VLine.h"
47 #include "GP_Line.h"
48 #include "GP_Rect.h"
49 #include "GP_Triangle.h"
50 #include "GP_Tetragon.h"
51 #include "GP_Circle.h"
52 #include "GP_Ellipse.h"
53 #include "GP_Polygon.h"
54 #include "GP_Symbol.h"
56 #endif /* GP_GFX_H */