[Gimp-developer] GIMP Automated Test Suite

2005-02-22 Thread Shlomi Fish
I began writing an automated test suite for GIMP (currently with three tests). You can checkout it by issuing the command: svn co svn://svn.berlios.de/gimp-test/trunk/gimp-tests/valid-output/ And then reading the README there. (also included below). I think it would be a good idea for GIMP

Re: [Gimp-developer] GIMP and multiple processors

2005-02-22 Thread Sven Neumann
Hi, David Bonnell [EMAIL PROTECTED] writes: If each thread obtains an (exclusive) lock on the pixel region then the tasks will effectively be serialized and overall execution time will increase compared to a non-threaded implementation due to the threading overheads. (Queue manipulation,

Re: [Gimp-developer] GIMP and multiple processors

2005-02-22 Thread Sven Neumann
Hi, John Cupitt [EMAIL PROTECTED] writes: FWIW, vips works by having a thread pool (rather than a tile queue) and a simple for(;;) loop over tiles. At each tile, the for() loop waits for a thread to become free, then assigns it a tile to work on. It would be trivial to change the GIMP code

[Gimp-developer] Odd problem on AIX when display help

2005-02-22 Thread Albert Chin
I've uploaded a snapshot of the opening help screen for gimp-2.2.3 built on AIX 5.1 with the IBM C compiler and against gnome-2.8.2: ftp://support.thewrittenword.com/outgoing/gimp/help-on-aix51.jpeg I don't see a similar problem on Solaris, HP-UX, IRIX, Tru64 UNIX, or RHEL. Any idea on where I

Re: [Gimp-developer] Odd problem on AIX when display help

2005-02-22 Thread Cai Qian
That's much because you don't use the UTF-8 encoding. 2005-02-22 14:43 -0600Albert Chin I've uploaded a snapshot of the opening help screen for gimp-2.2.3 built on AIX 5.1 with the IBM C compiler and against gnome-2.8.2: ftp://support.thewrittenword.com/outgoing/gimp/help-on-aix51.jpeg I

[Gimp-developer] cons-array with strings?

2005-02-22 Thread Kent Loobey
I would like to know how to insert a string into a cons-array using Script-Fu. Specifically how do I get the following to work? (let ( (foo (cons-array 1 'string)) ) (aset foo 0 my string)) ) Clearly aset is not the function to use... I am not trying to get you to figure out