Lines Matching defs:src
45 #include "src/core/SkConvertPixels.h"
46 #include "src/core/SkYUVMath.h"
47 #include "src/gpu/GrCaps.h"
48 #include "src/gpu/GrRecordingContextPriv.h"
516 static SkBitmap make_16(const SkBitmap& src, SkColorType dstCT,
518 SkASSERT(src.colorType() == kRGBA_F32_SkColorType);
522 result.allocPixels(SkImageInfo::Make(src.dimensions(), dstCT, kUnpremul_SkAlphaType));
524 for (int y = 0; y < src.height(); ++y) {
525 for (int x = 0; x < src.width(); ++x) {
526 const float* srcPixel = (const float*) src.getAddr(x, y);
1150 #include "src/core/SkAutoPixmapStorage.h"