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 3823b1a0ac199ae9243df287e7bcc424bf5da243 (commit) via 1fc43f8a9ad452719c10c9e1ccc144220eb707ec (commit) via ee2c2bb211e71593b9897778e2d9ed1f75cf1a51 (commit) via a428e50430bd5cbd9eb30a3a0b8083fe92920bc5 (commit) from 5759fa17dee0ab8b382bb02aa0f7969543e0a4c1 (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/3823b1a0ac199ae9243df287e7bcc424bf5da...
commit 3823b1a0ac199ae9243df287e7bcc424bf5da243 Author: Cyril Hrubis metan@ucw.cz Date: Sun Jan 20 12:06:40 2013 +0100
filters: Mirror & Rotate: use static for local functions.
diff --git a/libs/filters/GP_MirrorV.gen.c.t b/libs/filters/GP_MirrorV.gen.c.t index a54d949..03f4bb6 100644 --- a/libs/filters/GP_MirrorV.gen.c.t +++ b/libs/filters/GP_MirrorV.gen.c.t @@ -11,7 +11,8 @@ Vertical Mirror alogorithm #include "GP_Rotate.h"
%% for ps in pixelsizes -int GP_MirrorV_Raw_{{ ps.suffix }}(const GP_Context *src, GP_Context *dst, +static int GP_MirrorV_Raw_{{ ps.suffix }}(const GP_Context *src, + GP_Context *dst, GP_ProgressCallback *callback) { uint32_t x, y; diff --git a/libs/filters/GP_Rotate.gen.c.t b/libs/filters/GP_Rotate.gen.c.t index af2e679..ee6e6a4 100644 --- a/libs/filters/GP_Rotate.gen.c.t +++ b/libs/filters/GP_Rotate.gen.c.t @@ -11,7 +11,7 @@ Vertical Mirror alogorithm #include "GP_Rotate.h"
%% for ps in pixelsizes -int GP_FilterRotate90_Raw_{{ ps.suffix }}(const GP_Context *src, GP_Context *dst, +static int GP_FilterRotate90_Raw_{{ ps.suffix }}(const GP_Context *src, GP_Context *dst, GP_ProgressCallback *callback) { uint32_t x, y; @@ -42,7 +42,7 @@ int GP_FilterRotate90_Raw(const GP_Context *src, GP_Context *dst, }
%% for ps in pixelsizes -int GP_FilterRotate270_Raw_{{ ps.suffix }}(const GP_Context *src, GP_Context *dst, +static int GP_FilterRotate270_Raw_{{ ps.suffix }}(const GP_Context *src, GP_Context *dst, GP_ProgressCallback *callback) { uint32_t x, y;
http://repo.or.cz/w/gfxprim.git/commit/1fc43f8a9ad452719c10c9e1ccc144220eb70...
commit 1fc43f8a9ad452719c10c9e1ccc144220eb707ec Author: Cyril Hrubis metan@ucw.cz Date: Sun Jan 20 12:06:15 2013 +0100
build: Add TIFF functions to exported symbols.
diff --git a/build/syms/Loaders_symbols.txt b/build/syms/Loaders_symbols.txt index bce6650..5d56104 100644 --- a/build/syms/Loaders_symbols.txt +++ b/build/syms/Loaders_symbols.txt @@ -29,6 +29,11 @@ GP_LoadGIF GP_ReadGIF GP_OpenGIF
+GP_MatchTIFF +GP_OpenTIFF +GP_ReadTIFF +GP_LoadTIFF + GP_SavePPM GP_LoadPPM
http://repo.or.cz/w/gfxprim.git/commit/ee2c2bb211e71593b9897778e2d9ed1f75cf1...
commit ee2c2bb211e71593b9897778e2d9ed1f75cf1a51 Author: Cyril Hrubis metan@ucw.cz Date: Sun Jan 20 12:04:10 2013 +0100
loaders: TIFF: use static for local function.
diff --git a/libs/loaders/GP_TIFF.c b/libs/loaders/GP_TIFF.c index 058f4e2..f88d21e 100644 --- a/libs/loaders/GP_TIFF.c +++ b/libs/loaders/GP_TIFF.c @@ -66,7 +66,7 @@ int GP_OpenTIFF(const char *src_path, void **t) return 0; }
-const char *compression_name(uint16_t compression) +static const char *compression_name(uint16_t compression) { switch (compression) { case COMPRESSION_NONE:
http://repo.or.cz/w/gfxprim.git/commit/a428e50430bd5cbd9eb30a3a0b8083fe92920...
commit a428e50430bd5cbd9eb30a3a0b8083fe92920bc5 Author: Cyril Hrubis metan@ucw.cz Date: Sat Jan 19 16:03:34 2013 +0100
doc; backends: specify GP_BackendPoll more precisely.
diff --git a/doc/backends.txt b/doc/backends.txt index aca70f6..501baca 100644 --- a/doc/backends.txt +++ b/doc/backends.txt @@ -262,6 +262,7 @@ Polls for backend events. For backends that do not expose file descriptor (namely SDL) this should be called repeatedly. For other backend it may be called either repeatedly or when data are ready on file-descriptor.
+This call returns immediately after queued backend events were processed.
[source,c] -------------------------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes: build/syms/Loaders_symbols.txt | 5 +++++ doc/backends.txt | 1 + libs/filters/GP_MirrorV.gen.c.t | 3 ++- libs/filters/GP_Rotate.gen.c.t | 4 ++-- libs/loaders/GP_TIFF.c | 2 +- 5 files changed, 11 insertions(+), 4 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.