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 af3ab64dd671ec59cc44f58490401b96f48c66bc (commit) via 6104f5d98b1793065962388fc1a17ae801358e32 (commit) via b699a8f5b247291820a1a8e494d42cd033ae120f (commit) from 21f49beeb9dfc819dd0b7f2b84118b83d02aa612 (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/af3ab64dd671ec59cc44f58490401b96f48c6...
commit af3ab64dd671ec59cc44f58490401b96f48c66bc Author: Cyril Hrubis metan@ucw.cz Date: Tue Oct 15 23:02:02 2013 +0200
build: Add check make target.
Which just runs check_symbols.sh script which looks if there are any symbols exported by mistake.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/build/check_symbols.sh b/build/check_symbols.sh index 245b324..641df38 100755 --- a/build/check_symbols.sh +++ b/build/check_symbols.sh @@ -76,4 +76,6 @@ if [ -n "$FOUND" ]; then echo "Set them static or update lists of exported functions in syms/Foo_symbols.txt" echo echo "$WARN" +else + echo "No unexpected symbols found :)" fi diff --git a/post.mk b/post.mk index 0b9fc90..dbc6d13 100644 --- a/post.mk +++ b/post.mk @@ -29,12 +29,18 @@ help: @echo "" @echo "rebuild: does clean and all" @echo "" + @echo "check: do pre-commit check" + @echo " (currently checks for exported symbols)" + @echo "" @echo "The default silent output could be turned off by defining" @echo "'VERBOSE' shell variable as 'VERBOSE=1 make'" @echo ""
doc: - cd doc && make + @cd $(TOPDIR)/doc && make + +check: + @cd $(TOPDIR)/build && ./check_symbols.sh
# # Determine mode (eg do not generate anything if not in compile mode
http://repo.or.cz/w/gfxprim.git/commit/6104f5d98b1793065962388fc1a17ae801358...
commit 6104f5d98b1793065962388fc1a17ae801358e32 Author: Cyril Hrubis metan@ucw.cz Date: Tue Oct 15 22:56:47 2013 +0200
build: Update list of exported symbols.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/build/syms/Text_symbols.txt b/build/syms/Text_symbols.txt index 1b371e6..3b04747 100644 --- a/build/syms/Text_symbols.txt +++ b/build/syms/Text_symbols.txt @@ -15,6 +15,7 @@ GP_TextDescent GP_TextClearStr GP_Text GP_Print +GP_VPrint
GP_DefaultStyle
http://repo.or.cz/w/gfxprim.git/commit/b699a8f5b247291820a1a8e494d42cd033ae1...
commit b699a8f5b247291820a1a8e494d42cd033ae120f Author: Cyril Hrubis metan@ucw.cz Date: Tue Oct 15 22:56:11 2013 +0200
doc: Update general information.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/doc/general.txt b/doc/general.txt index 2c5bc9f..a2a9167 100644 --- a/doc/general.txt +++ b/doc/general.txt @@ -28,7 +28,7 @@ operations in Filters.
link:blits.html[Blits] are functions used to copy part of one bitmap into another bitmap. The blits be also used for primitive bitmap pixel type -conversions (i.e. RGB888 vs BGR888). +conversions (i.e. RGB888 vs BGR888).
link:progress_callback.html[Progress Callback] is an interface that allows you to monitor progress of an operation it is mainly used in loaders and filters. @@ -134,9 +134,9 @@ image filters. [width="100%",options="header"] |============================================================================= | Filter Name | Supported Pixel Type | Mutithreaded -| Convolution | RGB888 | Yes -| Separable Convolution | RGB888 | Yes -| Gaussian Blur | RGB888 | Yes +| Convolution | All | Yes +| Separable Convolution | All | Yes +| Gaussian Blur | All | Yes | Sobel Edge Detection | RGB888 | Yes | Prewitt Edge Detection | RGB888 | Yes |============================================================================= @@ -160,8 +160,8 @@ NOTE: Linear filters are implemented using generic convolution filters, once [width="100%",options="header"] |============================================================================= | Filter Name | Supported Pixel Type | Multithreaded - | Floyd Steinberg | RGB888 -> Any | No -| Hilbert Peano | RGB888 -> Any | No +| Floyd Steinberg | All -> Any | No +| Hilbert Peano | All -> Any | No |=============================================================================
.Currently Implemented Resamplings
-----------------------------------------------------------------------
Summary of changes: build/check_symbols.sh | 2 ++ build/syms/Text_symbols.txt | 1 + doc/general.txt | 12 ++++++------ post.mk | 8 +++++++- 4 files changed, 16 insertions(+), 7 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.