Lines Matching refs:src

9 #include "src/core/SkScalerContext.h"
17 #include "src/core/SkAutoMalloc.h"
18 #include "src/core/SkAutoPixmapStorage.h"
19 #include "src/core/SkDescriptor.h"
20 #include "src/core/SkDraw.h"
21 #include "src/core/SkFontPriv.h"
22 #include "src/core/SkGlyph.h"
23 #include "src/core/SkMaskGamma.h"
24 #include "src/core/SkMatrixProvider.h"
25 #include "src/core/SkPaintPriv.h"
26 #include "src/core/SkPathPriv.h"
27 #include "src/core/SkRasterClip.h"
28 #include "src/core/SkReadBuffer.h"
29 #include "src/core/SkRectPriv.h"
30 #include "src/core/SkStroke.h"
31 #include "src/core/SkSurfacePriv.h"
32 #include "src/core/SkTextFormatParams.h"
33 #include "src/core/SkWriteBuffer.h"
34 #include "src/utils/SkMatrix22.h"
245 SkMask src = glyph.mask(),
251 src.fImage = nullptr; // only want the bounds from the filter
252 if (as_MFB(fMaskFilter)->filterMask(&dst, src, matrix, nullptr)) {
290 static void pack4xHToMask(const SkPixmap& src, const SkMask& dst,
295 SkASSERT(kAlpha_8_SkColorType == src.colorType());
302 SkASSERT(src.width() == (dst.fBounds.height() - 2) * 4);
303 SkASSERT(src.height() == dst.fBounds.width());
305 SkASSERT(src.width() == (dst.fBounds.width() - 2) * 4);
306 SkASSERT(src.height() == dst.fBounds.height());
309 const int sample_width = src.width();
310 const int height = src.height();
356 const uint8_t* srcP = src.addr8(0, y);
422 static void packA8ToA1(const SkMask& mask, const uint8_t* src, size_t srcRB) {
438 *dst++ = pack_8_to_1(src);
439 src += 8;
445 bits |= convert_8_to_1(*src++) << shift;
449 src += srcPad;
624 // Find the intersection of src and dst while updating the fImages.
667 const uint8_t* src = srcMask.fImage;
681 memcpy(dst, src, width);
682 src += srcRB;