Lines Matching defs:src
20 sk_sp<SkData> Encode_PPM_A(const SkPixmap& src) {
21 if (src.width() <= 0 || src.height() <= 0 || !src.addr() ||
22 src.colorType() == kUnknown_SkColorType) {
26 SkString s = SkStringPrintf("P3\n%d %d\n255\n", src.width(), src.height());
28 for (int y = 0; y < src.height(); ++y) {
29 for (int x = 0; x < src.height(); ++x) {
31 SkColor c = src.getColor(x, y);