X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/66cd7e8220e0f7dbb0e43f44f6aab60194548ad0..67109eef29514092df311f5989fcd62c31e1d20f:/video/generic.c diff --git a/video/generic.c b/video/generic.c index 6168df2..319b5ad 100644 --- a/video/generic.c +++ b/video/generic.c @@ -1,5 +1,6 @@ #include #include +#include uint32_t checksum_rect_generic32(int x, int y, int width, int height) { @@ -8,17 +9,15 @@ uint32_t checksum_rect_generic32(int x, int y, int width, int height) { */ int scanline = fb->curmode.xres * 4; - uint32_t * lineaddr; - int i, j; + unsigned char * lineaddr; + int i; uint32_t sum = 0; for (i = 0; i < height; i++) { - lineaddr = (uint32_t *)(fb->fbaddr + (i + y) * scanline); + lineaddr = fb->fbaddr + (i + y) * scanline + (4 * x); - for (j = 0; j < width; j++) { - sum += lineaddr[j + x]; - } + sum ^= crc32(lineaddr, width * 4); } return sum; @@ -32,7 +31,7 @@ void copy_pixels_generic32(char *buf, int x, int y, int width, int height) for (cy = y; cy < (y + height); cy++) { fbuf = (unsigned int *)fb->fbaddr; - fbuf += y * (fb->curmode.xres) + x; + fbuf += cy * (fb->curmode.xres) + x; for (cx = x; cx < (x + width); cx++) *(ibuf++) = *(fbuf++); }