Lines Matching refs:matrices
48 SkTDArray<LabeledMatrix> matrices; variable
49 matrices.append()->fMatrix.reset();
50 matrices.top().fLabel = "Identity";
51 matrices.append()->fMatrix.setScale(1.2f, 0.8f);
52 matrices.top().fLabel = "Scale";
53 matrices.append()->fMatrix.setRotate(10.f);
54 matrices.top().fLabel = "Rotate";
55 matrices.append()->fMatrix.reset();
56 matrices.top().fMatrix.setPerspX(-0.0015f);
57 matrices.top().fMatrix.setPerspY(+0.0015f);
58 matrices.top().fLabel = "Persp";
116 canvas->drawText(matrices[lm].fLabel, strlen(matrices[lm].fLabel),
118 SkScalar labelW = labelPaint.measureText(matrices[lm].fLabel,
119 strlen(matrices[lm].fLabel));
131 for (int m = 0; m < matrices.count(); ++m) {
134 canvas->drawText(matrices[m].fLabel, strlen(matrices[m].fLabel),
146 canvas->concat(matrices[m].fMatrix);
162 canvas->concat(matrices[m].fMatrix);