Home
last modified time | relevance | path

Searched refs:flagCount (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/core/
DSkRecorder.cpp241 int flagCount = lattice.fFlags ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0; in onDrawImageLattice() local
246 flagCount, this->copy(lattice.fFlags, flagCount), *lattice.fBounds, dst); in onDrawImageLattice()
DSkPictureRecord.cpp546 int flagCount = (nullptr == lattice.fFlags) ? 0 : (lattice.fXCount + 1) * (lattice.fYCount + 1); in onDrawImageLattice() local
548 SkAlign4(flagCount * sizeof(SkCanvas::Lattice::Flags)) + sizeof(SkIRect); in onDrawImageLattice()
559 this->addInt(flagCount); in onDrawImageLattice()
560 fWriter.writePad(lattice.fFlags, flagCount * sizeof(SkCanvas::Lattice::Flags)); in onDrawImageLattice()
DSkPicturePlayback.cpp366 int flagCount = reader->readInt(); in handleOp() local
367 lattice.fFlags = (0 == flagCount) ? nullptr : (const SkCanvas::Lattice::Flags*) in handleOp()
368 reader->skip(SkAlign4(flagCount * sizeof(SkCanvas::Lattice::Flags))); in handleOp()
DSkRecords.h256 int flagCount;
DSkRecordDraw.cpp103 lattice.fFlags = (0 == r.flagCount) ? nullptr : r.flags; in draw()
/external/skia/tools/debugger/
DSkDrawCommand.cpp1277 int flagCount = 0; in MakeJsonLattice() local
1281 flagsRow.append(Json::Value(lattice.fFlags[flagCount++])); in MakeJsonLattice()