Home | History | Annotate | Download | only in core

Lines Matching defs:Style

48     The SkPaint class holds the style and color information about how to draw
277 enum Style {
285 /** Return the paint's style, used for controlling how primitives'
288 @return the paint's Style
290 Style getStyle() const { return (Style)fStyle; }
292 /** Set the paint's style, used for controlling how primitives'
295 @param style The new style to set in the paint
297 void setStyle(Style style);
338 @return the paint's stroke width, used whenever the paint's style is
347 style is Stroke or StrokeAndFill.
353 @return the paint's miter limit, used whenever the paint's style is
362 paint's style is Stroke or StrokeAndFill.
393 @return the line cap style for the paint, used whenever the paint's
394 style is Stroke or StrokeAndFill.
399 @param cap set the paint's line cap style, used whenever the paint's
400 style is Stroke or StrokeAndFill.
405 @return the paint's line join style, used whenever the paint's style is
411 @param join set the paint's line join style, used whenever the paint's
412 style is Stroke or StrokeAndFill.
873 SkStrokePathEffect(SkScalar width, SkPaint::Style, SkPaint::Join,