Home | History | Annotate | Download | only in gpu

Lines Matching defs:dst

86         uint8_t* dst = (uint8_t*)storage.reset(dstH * dstRB);
87 sk_bzero(dst, dstRB); // zero top row
88 dst += dstRB;
90 dst = zero_fill(dst, fBytesPerPixel); // zero left edge
91 memcpy(dst, image, width * fBytesPerPixel);
92 dst += width * fBytesPerPixel;
93 dst = zero_fill(dst, fBytesPerPixel); // zero right edge
96 sk_bzero(dst, dstRB); // zero bottom row