Home | History | Annotate | Download | only in graphics

Lines Matching refs:storageSize

579         ssize_t storageSize = ptCount * sizeof(SkPoint); // texs[]
581 storageSize += ptCount * sizeof(SkPoint); // storage for verts
583 storageSize += indexCount * sizeof(uint16_t); // indices[]
585 SkAutoMalloc storage(storageSize);
652 SkASSERT((char*)indexPtr - (char*)storage.get() == storageSize);