This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 5fe09088bb3606b059aab62e0decdb05e122e34f (commit) from 548b430abfdc45d7fdae3c88fc998c9431179f54 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/5fe09088bb3606b059aab62e0decdb05e122e...
commit 5fe09088bb3606b059aab62e0decdb05e122e34f Author: Cyril Hrubis metan@ucw.cz Date: Sun Feb 19 22:45:20 2012 +0100
input: Fix includes.
diff --git a/include/GP.h b/include/GP.h index 7310ddc..b01e512 100644 --- a/include/GP.h +++ b/include/GP.h @@ -19,7 +19,7 @@ * Copyright (C) 2009-2011 Jiri "BlueBear" Dluhos * * jiri.bluebear.dluhos@gmail.com * * * - * Copyright (C) 2009-2011 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -39,7 +39,7 @@ #include "backends/GP_Backend.h"
/* input and events */ -#include "input/GP_Event.h" +#include "input/GP_Input.h"
/* bitmap loaders */ #include "loaders/GP_Loaders.h" diff --git a/include/GP.h b/include/input/GP_Input.h similarity index 70% copy from include/GP.h copy to include/input/GP_Input.h index 7310ddc..07724ae 100644 --- a/include/GP.h +++ b/include/input/GP_Input.h @@ -16,35 +16,22 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, * * Boston, MA 02110-1301 USA * * * - * Copyright (C) 2009-2011 Jiri "BlueBear" Dluhos * - * jiri.bluebear.dluhos@gmail.com * - * * - * Copyright (C) 2009-2011 Cyril Hrubis metan@ucw.cz * + * Copyright (C) 2009-2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
-#ifndef GP_H -#define GP_H - -/* library core */ -#include "core/GP_Core.h" - -/* public drawing API */ -#include "gfx/GP_Gfx.h" +#ifndef INPUT_GP_INPUT_H +#define INPUT_GP_INPUT_H
-/* fonts and text drawing */ -#include "text/GP_Text.h" - -/* backends */ -#include "backends/GP_Backend.h" - -/* input and events */ +/* + * Base GP_Event definitions. + */ #include "input/GP_Event.h"
-/* bitmap loaders */ -#include "loaders/GP_Loaders.h" - -/* bitmap filters */ -#include "filters/GP_Filters.h" +/* + * Input drivers (semi internal). + */ +#include "input/GP_InputDriverSDL.h" +#include "input/GP_InputDriverLinux.h"
-#endif /* GP_H */ +#endif /* INPUT_GP_INPUT_H */
-----------------------------------------------------------------------
Summary of changes: include/GP.h | 4 +- include/input/{GP_InputDriverSDL.h => GP_Input.h} | 22 +++++++++----------- 2 files changed, 12 insertions(+), 14 deletions(-) copy include/input/{GP_InputDriverSDL.h => GP_Input.h} (83%)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.