Picon

GraphicsMagick ./ChangeLog ./NEWS.txt VisualMag...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/01 14:33:22

Modified files:
	.              : ChangeLog NEWS.txt 
	VisualMagick/installer/inc: version.isx 
	magick         : effect.c version.h 
	www            : Changelog.html NEWS.html 

Log message:
	* magick/effect.c (AddNoiseImagePixels): Update to pass per-thread
	'seed' value for more performance.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick/www api.html

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/02 13:10:26

Modified files:
	www            : api.html 

Log message:
	Added a link for Profile APIs

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./ChangeLog magick/command.c mag...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Branch: 	GraphicsMagick-1_2
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/03 16:38:51

Modified files:
	.              : ChangeLog 
	magick         : command.c semaphore.c version.h 
	www            : Changelog.html 

Log message:
	* magick/command.c (BenchmarkImageCommand): Restore original
	client name for each loop so that it is not extended further for
	each iteration.
	
	* magick/semaphore.c (UnlockSemaphoreInfo): Decrement lock depth
	under protection of the lock.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./ChangeLog magick/command.c mag...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Branch: 	GraphicsMagick-1_1
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/03 16:56:40

Modified files:
	.              : ChangeLog 
	magick         : command.c version.h 
	www            : Changelog.html 

Log message:
	* magick/command.c (BenchmarkImageCommand): Restore original
	client name for each loop so that it is not extended further for
	each iteration.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./ChangeLog VisualMagick/install...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/05 13:40:50

Modified files:
	.              : ChangeLog 
	VisualMagick/installer/inc: version.isx 
	magick         : command.c pixel_cache.c pixel_cache.h 
	                 pixel_iterator.c semaphore.c version.h 
	www            : Changelog.html 

Log message:
	* magick/pixel_cache.c: Exhuastive study of the pixel cache code
	reveals that it is inscrutable and not implemented in a fashion
	which enables useful multi-threading.  Therefore, the cache view
	interfaces are now made OpenMP-safe via a global critical section.
	
	* magick/pixel_iterator.c: Reduce use of critical sections around
	pixel cache to the bare minimum based on analysis and testing.
	Unfortunately, testing shows that the pixel cache views are still
	not 100% thread safe so the extra locking is still required.
	* magick/pixel_cache.c (ModifyCache): Make implementation thread
	safe.  This required removing a thread-unsafe optimization from
	Bill Radcliffe.
	* magick/command.c (BenchmarkImageCommand): Restore original
	client name for each loop so that it is not extended further for
	each iteration.
	* magick/semaphore.c (UnlockSemaphoreInfo): Decrement lock depth
	under protection of the lock.

(Continue reading)

Picon

GraphicsMagick ./Makefile.am ./Makefile.in www/...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/05 14:55:07

Modified files:
	.              : Makefile.am Makefile.in 
	www            : body.html 
Added files:
	.              : OpenMP.txt 
	www            : OpenMP.html 

Log message:
	Added OpenMP.txt

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./OpenMP.txt www/OpenMP.html

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/05 19:31:40

Modified files:
	.              : OpenMP.txt 
	www            : OpenMP.html 

Log message:
	Add an example of OpenMP performance boost.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./ChangeLog ./NEWS.txt VisualMag...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/06 17:22:53

Modified files:
	.              : ChangeLog NEWS.txt 
	VisualMagick/installer/inc: version.isx 
	magick         : effect.c fx.c pixel_cache.c pixel_cache.h 
	                 pixel_iterator.c version.h 
	www            : Changelog.html NEWS.html 

Log message:
	* magick/fx.c (ConvolveImage): Accelerate using OpenMP.
	* magick/effect.c (AdaptiveThresholdImage): Accelerate using OpenMP.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./ChangeLog ./NEWS.txt VisualMag...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/07 11:28:59

Modified files:
	.              : ChangeLog NEWS.txt 
	VisualMagick/installer/inc: version.isx 
	magick         : fx.c version.h 
	www            : Changelog.html NEWS.html 

Log message:
	* magick/fx.c (ColorizeImagePixelsCB): Re-implement using pixel
	iterators.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Picon

GraphicsMagick ./ChangeLog ./OpenMP.txt www/Cha...

CVSROOT:	/GraphicsMagick
Module name:	GraphicsMagick
Changes by:	Bob Friesenhahn <bfriesen <at> simple.dallas.tx.us>	08/09/07 11:35:06

Modified files:
	.              : ChangeLog OpenMP.txt 
	www            : Changelog.html OpenMP.html 

Log message:
	* magick/fx.c (ColorizeImage): Re-implement using pixel iterators.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

Gmane