This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [gui] Add BandCombineOp
- From: Cedric Berger <cedric at berger dot to>
- To: Jerry Quinn <jlquinn at optonline dot net>
- Cc: java-patches at gcc dot gnu dot org
- Date: Mon, 01 Nov 2004 08:38:37 +0100
- Subject: Re: [gui] Add BandCombineOp
Hi,
I just glanced at:
http://gcc.gnu.org/ml/java-patches/2004-q4/msg00399.html
And theses 2 loops look weird to me:
for (int y = src.getMinY(); y < src.getHeight() - src.getMinY(); y++)
for (int x = src.getMinX(); x < src.getWidth() - src.getMinX(); x++)
Are you sure it should not be "+" instead of "-"?
Cedric