Searched refs:flagCount (Results 1 – 12 of 12) sorted by relevance
/third_party/flutter/skia/src/core/ |
D | SkCanvasPriv.cpp | 44 int flagCount = buffer.readInt(); in ReadLattice() local 47 if (flagCount) { in ReadLattice() 48 lattice->fRectTypes = buffer.skipT<SkCanvas::Lattice::RectType>(flagCount); in ReadLattice() 49 lattice->fColors = buffer.skipT<SkColor>(flagCount); in ReadLattice() 56 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0; in WriteLattice() local 59 SkAlign4(flagCount * sizeof(SkCanvas::Lattice::RectType)) + in WriteLattice() 60 SkAlign4(flagCount * sizeof(SkColor)) + in WriteLattice() 69 writer.write32(flagCount); in WriteLattice() 70 writer.writePad(lattice.fRectTypes, flagCount * sizeof(uint8_t)); in WriteLattice() 71 writer.write(lattice.fColors, flagCount * sizeof(SkColor)); in WriteLattice()
|
D | SkRecorder.cpp | 251 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0; in onDrawImageLattice() local 256 flagCount, this->copy(lattice.fRectTypes, flagCount), in onDrawImageLattice() 257 this->copy(lattice.fColors, flagCount), *lattice.fBounds, dst); in onDrawImageLattice()
|
D | SkRecordDraw.cpp | 114 lattice.fRectTypes = (0 == r.flagCount) ? nullptr : r.flags; in draw() 115 lattice.fColors = (0 == r.flagCount) ? nullptr : r.colors; in draw()
|
D | SkRecords.h | 252 int flagCount;
|
/third_party/skia/src/core/ |
D | SkCanvasPriv.cpp | 47 int flagCount = buffer.readInt(); in ReadLattice() local 50 if (flagCount) { in ReadLattice() 51 lattice->fRectTypes = buffer.skipT<SkCanvas::Lattice::RectType>(flagCount); in ReadLattice() 52 lattice->fColors = buffer.skipT<SkColor>(flagCount); in ReadLattice() 59 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0; in WriteLattice() local 62 SkAlign4(flagCount * sizeof(SkCanvas::Lattice::RectType)) + in WriteLattice() 63 SkAlign4(flagCount * sizeof(SkColor)) + in WriteLattice() 72 writer.write32(flagCount); in WriteLattice() 73 writer.writePad(lattice.fRectTypes, flagCount * sizeof(uint8_t)); in WriteLattice() 74 writer.write(lattice.fColors, flagCount * sizeof(SkColor)); in WriteLattice()
|
D | SkRecorder.cpp | 222 int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0; in onDrawImageLattice2() local 227 flagCount, this->copy(lattice.fRectTypes, flagCount), in onDrawImageLattice2() 228 this->copy(lattice.fColors, flagCount), *lattice.fBounds, dst, filter); in onDrawImageLattice2()
|
D | SkRecordDraw.cpp | 125 lattice.fRectTypes = (0 == r.flagCount) ? nullptr : r.flags; in draw() 126 lattice.fColors = (0 == r.flagCount) ? nullptr : r.colors; in draw()
|
D | SkRecords.h | 253 int flagCount;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
D | vktApiBufferMemoryRequirementsTests.cpp | 609 const deUint32 flagCount = deUint32(failCreateBits.size()); in logFailedSubtests() local 613 …DE_ASSERT(flagCount && flagCount == failUsageBits.size() && flagCount == failExtMemHandleBits.size… in logFailedSubtests() 617 for (deUint32 i = 0; i < flagCount; ++i) in logFailedSubtests()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
D | vktApiBufferMemoryRequirementsTests.cpp | 609 const deUint32 flagCount = deUint32(failCreateBits.size()); in logFailedSubtests() local 613 …DE_ASSERT(flagCount && flagCount == failUsageBits.size() && flagCount == failExtMemHandleBits.size… in logFailedSubtests() 617 for (deUint32 i = 0; i < flagCount; ++i) in logFailedSubtests()
|
/third_party/flutter/skia/tools/debugger/ |
D | DrawCommand.cpp | 994 int flagCount = 0; in MakeJsonLattice() local 998 writer.appendS32(lattice.fRectTypes[flagCount++]); in MakeJsonLattice()
|
/third_party/skia/tools/debugger/ |
D | DrawCommand.cpp | 966 int flagCount = 0; in MakeJsonLattice() local 970 writer.appendS32(lattice.fRectTypes[flagCount++]); in MakeJsonLattice()
|