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()
368 void TessellationCache::BufferRemovedListener::operator()(Description& description, in operator ()() argument
430 static VertexBuffer* tessellatePath(const TessellationCache::Description& description, in tessellatePath() argument
434 description.setupMatrixAndPaint(&matrix, &paint); in tessellatePath()
444 static VertexBuffer* tessellateRoundRect(const TessellationCache::Description& description) { in tessellateRoundRect() argument
445 SkRect rect = SkRect::MakeWH(description.shape.roundRect.width, in tessellateRoundRect()
446 description.shape.roundRect.height); in tessellateRoundRect()
447 float rx = description.shape.roundRect.rx; in tessellateRoundRect()
448 float ry = description.shape.roundRect.ry; in tessellateRoundRect()
449 if (description.style == SkPaint::kStrokeAndFill_Style) { in tessellateRoundRect()
450 float outset = description.strokeWidth / 2; in tessellateRoundRect()
457 return tessellatePath(description, path); in tessellateRoundRect()