Lines Matching full:xforms
10 static void pre_translate_transform_values(const float* xforms,
164 inline void pre_translate_transform_values(const float* xforms,
168 memcpy(dst, xforms, count * GrPathRendering::PathTransformSize(type) * sizeof(float));
178 dst[i] = xforms[i] + x;
184 dst[i] = xforms[i] + y;
189 dst[i] = xforms[i] + x;
190 dst[i + 1] = xforms[i + 1] + y;
195 dst[i] = xforms[i];
196 dst[i + 1] = xforms[i + 1];
197 dst[i + 2] = xforms[i] * x + xforms[i + 1] * y + xforms[i + 2];
198 dst[i + 3] = xforms[i + 3];
199 dst[i + 4] = xforms[i + 4];
200 dst[i + 5] = xforms[i + 3] * x + xforms[i + 4] * y + xforms[i + 5];