Lines Matching refs:entrySize
21 fData.reserve(this->entrySize(fDeviceType, nullptr)); in GrQuadBuffer()
32 int entrySize = this->entrySize(fDeviceType, needsLocals ? &fLocalType : nullptr); variable
33 fData.reserve(count * entrySize);
178 inline int entrySize(GrQuad::Type deviceType, const GrQuad::Type* localType) const { in entrySize() function
188 inline int entrySize(const Header* header) const { in entrySize() function
191 return this->entrySize(static_cast<GrQuad::Type>(header->fDeviceType), &localType); in entrySize()
193 return this->entrySize(static_cast<GrQuad::Type>(header->fDeviceType), nullptr); in entrySize()
267 int entrySize = this->entrySize(deviceQuad.quadType(), localQuad ? &localType : nullptr); in append() local
270 char* entry = fData.append(entrySize); in append()
289 SkASSERT((char*)coords - entry == entrySize); in append()
350 SkASSERT((fNextEntry - fCurrentEntry) == fBuffer->entrySize(h)); in next()
360 fCurrentEntry += fBuffer->entrySize(h); in next()