Lines Matching refs:matrices
70 SkTDArray<LabeledMatrix> matrices;
71 matrices.append()->fMatrix.reset();
72 matrices.top().fLabel = "Identity";
73 matrices.append()->fMatrix.setScale(1.2f, 0.8f);
74 matrices.top().fLabel = "Scale";
75 matrices.append()->fMatrix.setRotate(10.f);
76 matrices.top().fLabel = "Rotate";
77 matrices.append()->fMatrix.reset();
78 matrices.top().fMatrix.setPerspX(-0.0015f);
79 matrices.top().fMatrix.setPerspY(+0.0015f);
80 matrices.top().fLabel = "Persp";
139 canvas->drawText(matrices[lm].fLabel, strlen(matrices[lm].fLabel),
141 SkScalar labelW = labelPaint.measureText(matrices[lm].fLabel,
142 strlen(matrices[lm].fLabel));
154 for (int m = 0; m < matrices.count(); ++m) {
157 canvas->drawText(matrices[m].fLabel, strlen(matrices[m].fLabel),
165 canvas->concat(matrices[m].fMatrix);
181 canvas->concat(matrices[m].fMatrix);