/[classpath]/classpath/java/awt/image/SampleModel.java
ViewVC logotype

Diff of /classpath/java/awt/image/SampleModel.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by mkoch, Wed Feb 16 10:39:27 2005 UTC revision 1.6 by ziga, Mon Jun 13 21:01:39 2005 UTC
# Line 1  Line 1 
1  /* Copyright (C) 2000, 2001, 2002  Free Software Foundation  /* Copyright (C) 2000, 2001, 2002, 2005  Free Software Foundation
2    
3  This file is part of GNU Classpath.  This file is part of GNU Classpath.
4    
# Line 236  public abstract class SampleModel Line 236  public abstract class SampleModel
236        {        {
237          for (int xx=x; xx<(x+w); xx++)          for (int xx=x; xx<(x+w); xx++)
238            {            {
239              getPixel(xx, yy, pixel, data);              pixel = getPixel(xx, yy, pixel, data);
240              System.arraycopy(pixel, 0, iArray, outOffset, numBands);              System.arraycopy(pixel, 0, iArray, outOffset, numBands);
241              outOffset += numBands;              outOffset += numBands;
242            }            }
# Line 257  public abstract class SampleModel Line 257  public abstract class SampleModel
257        {        {
258          for (int xx=x; xx<(x+w); xx++)          for (int xx=x; xx<(x+w); xx++)
259            {            {
260              getPixel(xx, yy, pixel, data);              pixel = getPixel(xx, yy, pixel, data);
261              System.arraycopy(pixel, 0, fArray, outOffset, numBands);              System.arraycopy(pixel, 0, fArray, outOffset, numBands);
262              outOffset += numBands;              outOffset += numBands;
263            }            }
# Line 278  public abstract class SampleModel Line 278  public abstract class SampleModel
278        {        {
279          for (int xx=x; xx<(x+w); xx++)          for (int xx=x; xx<(x+w); xx++)
280            {            {
281              getPixel(xx, yy, pixel, data);              pixel = getPixel(xx, yy, pixel, data);
282              System.arraycopy(pixel, 0, dArray, outOffset, numBands);              System.arraycopy(pixel, 0, dArray, outOffset, numBands);
283              outOffset += numBands;              outOffset += numBands;
284            }            }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26