Lines Matching refs:row
71 // Create an entire row of the same color, with the alpha from 0 to kAlphaMax.
72 uint32_t row[kAlphaMax];
73 sk_memset32(row, fColors[i], kAlphaMax);
75 row[a] = (row[a] & 0x00FFFFFF) | (a << 24);
78 // Tranform row to dst, then premultiply.
80 SkColorSpaceXform::kBGRA_8888_ColorFormat, row, kAlphaMax,
85 // Write the dst space premultiplied row to the canvas.
90 // Premultiply, then transform the row to dst.
91 SkOpts::RGBA_to_rgbA(pixels, row, kAlphaMax);
98 // Write the src space premultiplied row to the canvas.