X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=blobdiff_plain;f=pctb%2Fpages.c;h=c504c951e75956e77b2a3c2ad6e9504d169bab62;hp=fcee3d5845eaae1c47f97aa2d965bf623b820ca0;hb=a1ba082dc5187f5818466ff9767a16edcd99b74c;hpb=309781e46dba727aed5fa6fe725da2d60d368057 diff --git a/pctb/pages.c b/pctb/pages.c index fcee3d5..c504c95 100644 --- a/pctb/pages.c +++ b/pctb/pages.c @@ -225,6 +225,8 @@ static void compute_shift_mask(ShMask *sm, unsigned long ximage_mask) { } assert(sm->lshift < LONG_BIT); assert(sm->rshift < LONG_BIT); + debugf("SHIFTMASK %p={.lshift=%d, .rshift=%d} image_mask=%lx\n", + sm, sm->lshift, sm->rshift, ximage_mask); } static void rtimestamp(double *t, const char *wh) { @@ -273,13 +275,31 @@ static void snapshot(Snapshot **output) { int x,y,i; unsigned char *op= (*output)->data; for (y=0; y> shiftmasks[i].rshift) - & SAMPLEMASK; - *op++= sample; + if (im_use->xoffset == 0 && + im_use->format == ZPixmap && + im_use->byte_order == LSBFirst && + im_use->depth == 24 && + im_use->bits_per_pixel == 32 && + im_use->red_mask == 0x0000ffU && + im_use->green_mask == 0x00ff00U && + im_use->blue_mask == 0xff0000U) { + const char *p= im_use->data + y * im_use->bytes_per_line; +// debugf("optimised copy y=%d",y); + for (x=0; x> shiftmasks[i].rshift) + & SAMPLEMASK; + *op++= sample; + } } } } @@ -503,11 +523,9 @@ static CanonImage *convert_page(Snapshot *sn) { unsigned char *pixel= sn->data; CANONICALISE_IMAGE(im, sn->w, sn->h, { - rgb= - (pixel[0] << 16) | - (pixel[1] << 8) | - (pixel[2] ); - pixel += 3; + r= *pixel++; + g= *pixel++; + b= *pixel++; }); sysassert(!ferror(screenshot_file));