Home | History | Annotate | Download | only in tests

Lines Matching defs:unpremul

520         ERRORF(reporter, "Failed to make unpremul texture image.");
526 SkBitmap unpremul;
527 unpremul.allocPixels(SkImageInfo::Make(256, 256, kRGBA_8888_SkColorType,
529 if (!texImage->readPixels(unpremul.info(), unpremul.getPixels(), unpremul.rowBytes(), 0,
531 ERRORF(reporter, "Unpremul readback failed.");
536 if (*bmp.getAddr32(x, y) != *unpremul.getAddr32(x, y)) {
537 ERRORF(reporter, "unpremul(0x%08x)->unpremul(0x%08x) at %d, %d.",
538 *bmp.getAddr32(x, y), *unpremul.getAddr32(x, y), x, y);
548 ERRORF(reporter, "Unpremul readback failed.");
570 ERRORF(reporter, "unpremul(0x%08x)->premul(0x%08x) at %d, %d.",