comparison src/glyphs-eimage.c @ 388:aabb7f5b1c81 r21-2-9

Import from CVS: tag r21-2-9
author cvs
date Mon, 13 Aug 2007 11:09:42 +0200
parents 8626e4521993
children 74fd4e045ea6
comparison
equal deleted inserted replaced
387:f892a9d0bb8d 388:aabb7f5b1c81
687 for (i = 0; i < height; i++) 687 for (i = 0; i < height; i++)
688 { 688 {
689 if (interlace) 689 if (interlace)
690 if (row >= height) { 690 if (row >= height) {
691 row = InterlacedOffset[++pass]; 691 row = InterlacedOffset[++pass];
692 while (row > height) 692 while (row >= height)
693 row = InterlacedOffset[++pass]; 693 row = InterlacedOffset[++pass];
694 } 694 }
695 eip = unwind.eimage + (row * width * 3); 695 eip = unwind.eimage + (row * width * 3);
696 for (j = 0; j < width; j++) 696 for (j = 0; j < width; j++)
697 { 697 {