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 08e5a448761d5d3b25abcf1d42967458e8cdfa62 (commit) via 8112b2d6aa79952028fc73c6d3a831878804d84b (commit) via f0949124262c1ba843c8abe8bc85f3e21703c16a (commit) from 0d0f7852bb88e81f1e248e9776022232454d218e (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/08e5a448761d5d3b25abcf1d42967458e8cdf...
commit 08e5a448761d5d3b25abcf1d42967458e8cdfa62 Merge: 8112b2d 0d0f785 Author: Cyril Hrubis metan@ucw.cz Date: Tue Dec 25 02:38:34 2012 +0100
Merge ssh://repo.or.cz/srv/git/gfxprim
http://repo.or.cz/w/gfxprim.git/commit/8112b2d6aa79952028fc73c6d3a831878804d...
commit 8112b2d6aa79952028fc73c6d3a831878804d84b Author: Cyril Hrubis metan@ucw.cz Date: Tue Dec 25 02:38:03 2012 +0100
build: syms: Update lists of exported symbols.
diff --git a/build/syms/Backend_symbols.txt b/build/syms/Backend_symbols.txt index abcd681..580f390 100644 --- a/build/syms/Backend_symbols.txt +++ b/build/syms/Backend_symbols.txt @@ -1,7 +1,13 @@ GP_BackendInit + GP_BackendLinuxFBInit + GP_BackendVirtualInit + GP_BackendX11Init +GP_BackendIsX11 +GP_BackendX11RequestFullscreen + GP_BackendSDLInit
GP_ContextFromSurface diff --git a/build/syms/Core_symbols.txt b/build/syms/Core_symbols.txt index 5033860..3de2293 100644 --- a/build/syms/Core_symbols.txt +++ b/build/syms/Core_symbols.txt @@ -22,6 +22,8 @@ GP_DebugPrint GP_SetDebugLevel GP_GetDebugLevel
+GP_PrintAbortInfo + GP_ColorToPixel GP_ColorLoadPixels GP_RGBA8888ToPixel
http://repo.or.cz/w/gfxprim.git/commit/f0949124262c1ba843c8abe8bc85f3e21703c...
commit f0949124262c1ba843c8abe8bc85f3e21703c16a Author: Cyril Hrubis metan@ucw.cz Date: Tue Dec 25 02:37:14 2012 +0100
core: GP_Common: Make local functions static.
diff --git a/libs/core/GP_Common.c b/libs/core/GP_Common.c index 52c4920..ae1365e 100644 --- a/libs/core/GP_Common.c +++ b/libs/core/GP_Common.c @@ -16,7 +16,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, * * Boston, MA 02110-1301 USA * * * - * Copyright (C) 2011 Tomas Gavenciak gavento@ucw.cz * + * Copyright (C) 2011-2012 Tomas Gavenciak gavento@ucw.cz * + * Copyright (C) 2012 Cyril Hrubis metan@ucw.cz * * * *****************************************************************************/
@@ -39,7 +40,7 @@ #define GP_ABORT_INFO_TRACE_LEVELS 20
-void GP_PrintCStack(void) +static void print_c_stack(void) { #ifdef HAVE_BACKTRACE #if GP_ABORT_INFO_TRACE_LEVELS > 0 @@ -52,7 +53,7 @@ void GP_PrintCStack(void) #endif /* HAVE_BACKTRACE */ }
-void GP_PrintPythonStack(void) +static void print_python_stack(void) { #ifdef HAVE_DL /* Print python stack trace in case python lib is loaded and @@ -65,13 +66,13 @@ void GP_PrintPythonStack(void) fprintf(stderr, "nPython stack trace (most recent call last; ignore last line):n"); fflush(stderr); dl_PyRun_SimpleString("import traceback; traceback.print_stack();"); - } + } #endif /* HAVE_DL */ }
void GP_PrintAbortInfo(void) { - GP_PrintPythonStack(); - GP_PrintCStack(); + print_python_stack(); + print_c_stack(); }
-----------------------------------------------------------------------
Summary of changes: build/syms/Backend_symbols.txt | 6 ++++++ build/syms/Core_symbols.txt | 2 ++ libs/core/GP_Common.c | 13 +++++++------ 3 files changed, 15 insertions(+), 6 deletions(-)
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.