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 "Gem".
The branch, master has been updated
via 57594d8dceadc598388c13c78ff2d413128acc81 (commit)
via 51046a864149879788d5a5bc5daac22729a9f609 (commit)
via eaee5a1a8d6f44fc07534c1cd0c27daced37e359 (commit)
via c9294f0a8d6a0bd1381dbfe0b2d6dc65d88a2524 (commit)
via b06d671f4bddc0fd9e88fa0b65881d1074c8409f (commit)
via f8e4102f4e69db8e4a7d057df85935b26347bcb6 (commit)
via bb83977427c803873cea739d5091f3eec61121af (commit)
via a6334fa2eaebf5a99bfd2da51b821453333c9b81 (commit)
via efb32796bf339187f195268a948c9f018489ee14 (commit)
via 6981e77c30b715b3a6d882ee5fb905263094a129 (commit)
via 2c1f869a6eb8235b2ba534735ff10e35a578c205 (commit)
via 73804708eef2e42856d4c1c8f5c7273ff7ce50da (commit)
via 218dcefdf56e88bbd07cf705a1b78c5dbe978954 (commit)
via 506c321d52907e367ed57e1fbffacbd1d9e497d5 (commit)
from a1809421bd70820f8e0a37317a49f60cb7471237 (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 -----------------------------------------------------------------
commit 57594d8dceadc598388c13c78ff2d413128acc81
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 17:56:02 2012 +0100
removed debugging printout
commit 51046a864149879788d5a5bc5daac22729a9f609
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 17:53:39 2012 +0100
fixing example
commit eaee5a1a8d6f44fc07534c1cd0c27daced37e359
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 17:51:14 2012 +0100
more logic into [pix_set]
to make ROI work better
LATER check whether this breaks something
commit c9294f0a8d6a0bd1381dbfe0b2d6dc65d88a2524
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 16:43:07 2012 +0100
use [pix_roi]
commit b06d671f4bddc0fd9e88fa0b65881d1074c8409f
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 16:42:42 2012 +0100
adapted to new ROI system
commit f8e4102f4e69db8e4a7d057df85935b26347bcb6
Merge: bb83977 2c1f869
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 16:18:06 2012 +0100
Merge remote-tracking branch 'avilleret/pix_set'
commit bb83977427c803873cea739d5091f3eec61121af
Merge: a6334fa a180942
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 16:08:35 2012 +0100
Merge branch 'master' of ssh://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem
commit a6334fa2eaebf5a99bfd2da51b821453333c9b81
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 16:07:23 2012 +0100
added [pix_roi]
simple object to set the Region-Of-Interest.
actually it doesn't have anything todo with pix
(though it will be used mostly with pixes)
commit efb32796bf339187f195268a948c9f018489ee14
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 16:06:35 2012 +0100
simple abstract Rectangle
to be used as ROI
commit 6981e77c30b715b3a6d882ee5fb905263094a129
Author: IOhannes m zmölnig <zmoel...@iem.at>
Date: Tue Dec 11 15:56:36 2012 +0100
symbolic keys utility
for performance reasons we use integer keys.
but we provide a string2int map, where we can register new keys when
"GemState::getKey("foo") is called the first time, it will return a new key.
next time it get's called it will return the same key.
thus we only need to share the symbolic name, and can use that to
initialize a
constant integer key.
commit 2c1f869a6eb8235b2ba534735ff10e35a578c205
Author: avilleret <antoine.ville...@gmail.com>
Date: Fri Dec 7 01:43:07 2012 +0100
add bitmap_font example
commit 73804708eef2e42856d4c1c8f5c7273ff7ce50da
Author: avilleret <antoine.ville...@gmail.com>
Date: Fri Dec 7 01:42:30 2012 +0100
update help patch
commit 218dcefdf56e88bbd07cf705a1b78c5dbe978954
Author: avilleret <antoine.ville...@gmail.com>
Date: Fri Dec 7 01:41:57 2012 +0100
fix error messages
commit 506c321d52907e367ed57e1fbffacbd1d9e497d5
Author: avilleret <antoine.ville...@gmail.com>
Date: Fri Dec 7 01:04:29 2012 +0100
add roisize, roioffset and fill message
-----------------------------------------------------------------------
Summary of changes:
examples/04.pix/27.bitmap_font.pd | 156 ++++++++++++++++++++++++++++
examples/data/bitmap_font_6x8.bmp | Bin 0 -> 3798 bytes
help/pix_set-help.pd | 110 +++++++++++++++++---
src/Gem/Makefile.am | 3 +
src/Gem/Rectangle.cpp | 48 +++++++++
src/{Nongeos/light.h => Gem/Rectangle.h} | 47 ++++-----
src/Gem/State.cpp | 34 ++++++
src/Gem/State.h | 31 +++---
src/Pixes/Makefile.am | 2 +
src/Pixes/pix_roi.cpp | 83 +++++++++++++++
src/Pixes/pix_roi.h | 57 +++++++++++
src/Pixes/pix_set.cpp | 163 +++++++++++++++++++++++++++--
src/Pixes/pix_set.h | 17 +++
13 files changed, 681 insertions(+), 70 deletions(-)
create mode 100644 examples/04.pix/27.bitmap_font.pd
create mode 100644 examples/data/bitmap_font_6x8.bmp
create mode 100644 src/Gem/Rectangle.cpp
copy src/{Nongeos/light.h => Gem/Rectangle.h} (59%)
create mode 100644 src/Pixes/pix_roi.cpp
create mode 100644 src/Pixes/pix_roi.h
hooks/post-receive
--
Gem
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
pd-gem-CVS mailing list
pd-gem-CVS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pd-gem-cvs