Home
last modified time | relevance | path

Searched refs:strokeOutline (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSwMemPool.cpp55 return &mpool->strokeOutline[idx]; in mpoolReqStrokeOutline()
61 mpool->strokeOutline[idx].pts.clear(); in mpoolRetStrokeOutline()
62 mpool->strokeOutline[idx].cntrs.clear(); in mpoolRetStrokeOutline()
63 mpool->strokeOutline[idx].types.clear(); in mpoolRetStrokeOutline()
64 mpool->strokeOutline[idx].closed.clear(); in mpoolRetStrokeOutline()
89 mpool->strokeOutline = static_cast<SwOutline*>(calloc(1, sizeof(SwOutline) * allocSize)); in mpoolInit()
105 mpool->strokeOutline[i].pts.reset(); in mpoolClear()
106 mpool->strokeOutline[i].cntrs.reset(); in mpoolClear()
107 mpool->strokeOutline[i].types.reset(); in mpoolClear()
108 mpool->strokeOutline[i].closed.reset(); in mpoolClear()
[all …]
DtvgSwShape.cpp595 SwOutline* strokeOutline = nullptr; in shapeGenStrokeRle() local
618 strokeOutline = strokeExportOutline(shape->stroke, mpool, tid); in shapeGenStrokeRle()
620 if (!mathUpdateOutlineBBox(strokeOutline, clipRegion, renderRegion, false)) { in shapeGenStrokeRle()
625 shape->strokeRle = rleRender(shape->strokeRle, strokeOutline, renderRegion, true); in shapeGenStrokeRle()
DtvgSwCommon.h290 SwOutline* strokeOutline; member