Home | History | Annotate | Download | only in core

Lines Matching refs:grayMask

2115     SkMask  grayMask;
2116 grayMask.fImage = NULL;
2118 grayMask.fFormat = SkMask::kA8_Format;
2119 grayMask.fBounds = origMask.fBounds;
2120 grayMask.fRowBytes = origMask.fBounds.width();
2121 size_t size = grayMask.computeImageSize();
2122 grayMask.fImage = (uint8_t*)fGrayMaskScratch.reset(size,
2125 upscaleBW2A8(&grayMask, origMask);
2126 mask = &grayMask;