Lines Matching refs:fBitmap
159 const int w = dr->fComparison.fBitmap.width(); in compute_diff()
160 const int h = dr->fComparison.fBitmap.height(); in compute_diff()
161 if (w != dr->fBase.fBitmap.width() || h != dr->fBase.fBitmap.height()) { in compute_diff()
166 SkAutoLockPixels alpDiff(dr->fDifference.fBitmap); in compute_diff()
167 SkAutoLockPixels alpWhite(dr->fWhite.fBitmap); in compute_diff()
179 SkPMColor c0 = *dr->fBase.fBitmap.getAddr32(x, y); in compute_diff()
180 SkPMColor c1 = *dr->fComparison.fBitmap.getAddr32(x, y); in compute_diff()
207 *dr->fDifference.fBitmap.getAddr32(x, y) = outputDifference; in compute_diff()
208 *dr->fWhite.fBitmap.getAddr32(x, y) = PMCOLOR_WHITE; in compute_diff()
210 *dr->fDifference.fBitmap.getAddr32(x, y) = 0; in compute_diff()
211 *dr->fWhite.fBitmap.getAddr32(x, y) = PMCOLOR_BLACK; in compute_diff()