Lines Matching refs:description
100 TessellationTask(Tessellator tessellator, const Description& description) in TessellationTask() argument
102 , description(description) { in TessellationTask()
108 Description description; member in android::uirenderer::TessellationCache::TessellationTask
120 VertexBuffer* buffer = t->tessellator(t->description); in onProcess()
377 void TessellationCache::BufferRemovedListener::operator()(Description& description, in operator ()() argument
439 static VertexBuffer* tessellatePath(const TessellationCache::Description& description, in tessellatePath() argument
443 description.setupMatrixAndPaint(&matrix, &paint); in tessellatePath()
453 static VertexBuffer* tessellateRoundRect(const TessellationCache::Description& description) { in tessellateRoundRect() argument
454 SkRect rect = SkRect::MakeWH(description.shape.roundRect.width, in tessellateRoundRect()
455 description.shape.roundRect.height); in tessellateRoundRect()
456 float rx = description.shape.roundRect.rx; in tessellateRoundRect()
457 float ry = description.shape.roundRect.ry; in tessellateRoundRect()
458 if (description.style == SkPaint::kStrokeAndFill_Style) { in tessellateRoundRect()
459 float outset = description.strokeWidth / 2; in tessellateRoundRect()
466 return tessellatePath(description, path); in tessellateRoundRect()