Home | History | Annotate | Download | only in core

Lines Matching refs:Style

4  * Use of this source code is governed by a BSD-style license that can be
42 The SkPaint class holds the style and color information about how to draw
305 enum Style {
314 /** Return the paint's style, used for controlling how primitives'
317 @return the paint's Style
319 Style getStyle() const { return (Style)fBitfields.fStyle; }
321 /** Set the paint's style, used for controlling how primitives'
324 @param style The new style to set in the paint
326 void setStyle(Style style);
367 @return the paint's stroke width, used whenever the paint's style is
376 style is Stroke or StrokeAndFill.
382 @return the paint's miter limit, used whenever the paint's style is
391 paint's style is Stroke or StrokeAndFill.
431 @return the line cap style for the paint, used whenever the paint's
432 style is Stroke or StrokeAndFill.
437 @param cap set the paint's line cap style, used whenever the paint's
438 style is Stroke or StrokeAndFill.
443 @return the paint's line join style, used whenever the paint's style is
449 @param join set the paint's line join style, used whenever the paint's
450 style is Stroke or StrokeAndFill.
987 SkPaint::Style style = this->getStyle();
989 if (kFill_Style == style) {
999 return this->doComputeFastBounds(orig, storage, style);
1007 // Take the style explicitly, so the caller can force us to be stroked
1010 Style) const;