Home | History | Annotate | Download | only in core

Lines Matching refs:fMatrixCount

87     fMatrixCount = matrices.count();
88 if (fMatrixCount > 0) {
89 fMatrices = SkNEW_ARRAY(SkMatrix, fMatrixCount);
186 fMatrixCount = src.fMatrixCount;
187 fMatrices = SkNEW_ARRAY(SkMatrix, fMatrixCount);
188 memcpy(fMatrices, src.fMatrices, fMatrixCount * sizeof(SkMatrix));
229 fBitmapCount = fMatrixCount = fPaintCount = fPictureCount =
262 fMatrixCount, fMatrixCount * sizeof(SkMatrix),
356 writeTagSize(buffer, PICT_MATRIX_TAG, fMatrixCount);
357 buffer.writeMul4(fMatrices, fMatrixCount * sizeof(SkMatrix));
470 fMatrixCount = readTagSize(buffer, PICT_MATRIX_TAG);
471 fMatrices = SkNEW_ARRAY(SkMatrix, fMatrixCount);
472 buffer.read(fMatrices, fMatrixCount * sizeof(SkMatrix));
1370 if (fMatrixCount > 0)
1371 SkDebugf("// matrices (%d)\n", fMatrixCount);
1372 for (index = 0; index < fMatrixCount; index++) {
1377 if (fMatrixCount > 0)
1380 for (index = 0; index < fMatrixCount; index++)
1383 if (fMatrixCount > 0)