Home
last modified time | relevance | path

Searched refs:fInputSize (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkGlyphBuffer.cpp24 fInputSize = 0; in ensureSize()
29 fInputSize = source.size(); in startSource()
47 fInputSize = source.size(); in startBitmapDevice()
75 fInputSize = source.size(); in startGPUDevice()
106 : SkZip<SkGlyphVariant, SkPoint>{fInputSize, fMultiBuffer.get(), fPositions.get()}) { in dumpInput()
119 fInputSize = 0; in reset()
DSkGlyphBuffer.h181 return SkZip<SkGlyphVariant, SkPoint>{fInputSize, fMultiBuffer.get(), fPositions}; in input()
227 size_t fInputSize{0};
/external/skqp/src/gpu/effects/
DGrSkSLFP.cpp252 , fInputSize(inputSize) { in GrSkSLFP()
264 , fInputs(new int8_t[other.fInputSize]) in GrSkSLFP()
265 , fInputSize(other.fInputSize) { in GrSkSLFP()
266 memcpy(fInputs.get(), other.fInputs.get(), fInputSize); in GrSkSLFP()
289 const SkSL::Program* specialized = fFactory->getSpecialization(fKey, fInputs.get(), fInputSize); in onCreateGLSLInstance()
351 SkASSERT(fIndex != sk.fIndex || fInputSize == sk.fInputSize); in onIsEqual()
353 !memcmp(fInputs.get(), sk.fInputs.get(), fInputSize); in onIsEqual()
DGrSkSLFP.h112 size_t fInputSize; variable