Home | History | Annotate | Download | only in core

Lines Matching refs:record

15 SkPicturePlayback::SkPicturePlayback(const SkPictureRecord& record) {
19 int bitmaps = record.bitmaps(&bitmapBytes);
20 int matrices = record.matrices(&matricesBytes);
21 int paints = record.paints(&paintBytes);
22 int paths = record.paths(&pathBytes);
23 int pictures = record.pictures(&pictureBytes);
24 int regions = record.regions(&regionBytes);
25 SkDebugf("picture record mem used %zd (stream %zd) ", record.size(),
26 record.streamlen());
39 if (record.fPointWrites != 0)
40 SkDebugf("points size %zd (points:%d) ", record.fPointBytes, record.fPointWrites);
41 if (record.fRectWrites != 0)
42 SkDebugf("rects size %zd (rects:%d) ", record.fRectBytes, record.fRectWrites);
43 if (record.fTextWrites != 0)
44 SkDebugf("text size %zd (text strings:%d) ", record.fTextBytes, record.fTextWrites);
49 record.dumpMatrices();
50 record.dumpPaints();
53 record.validate();
54 const SkWriter32& writer = record.writeStream();
68 fRCPlayback.reset(&record.fRCSet);
71 fTFPlayback.reset(&record.fTFSet);
74 const SkTDArray<const SkFlatBitmap* >& bitmaps = record.getBitmaps();
86 const SkTDArray<const SkFlatMatrix* >& matrices = record.getMatrices();
97 const SkTDArray<const SkFlatPaint* >& paints = record.getPaints();
110 fPathHeap = record.fPathHeap;
113 const SkTDArray<SkPicture* >& pictures = record.getPictureRefs();
123 const SkTDArray<SkShape* >& shapes = record.getShapes();
134 const SkTDArray<const SkFlatRegion* >& regions = record.getRegions();