Don't forget to step the rows when verifying the equivalence of fb/sys areas.

This is only used by fakexa, but we would have missed some errors without this
fix.
This commit is contained in:
Eric Anholt 2006-06-19 14:40:27 -07:00
parent e793f0eeee
commit 520c80f4b8

View File

@ -435,6 +435,8 @@ exaAssertNotDirty (PixmapPtr pPixmap)
if (memcmp(dst, src, data_row_bytes) != 0) {
abort();
}
dst += dst_pitch;
src += src_pitch;
}
exaFinishAccess(&pPixmap->drawable, EXA_PREPARE_SRC);
}