Searched refs:FillType (Results 1 - 25 of 50) sorted by relevance

12

/external/skia/tests/
H A DPathOpsInverseTest.cpp16 one.setFillType((SkPath::FillType) oneFill);
23 two.setFillType((SkPath::FillType) twoFill);
H A DPathOpsExtendedTest.h38 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType );
H A DPathOpsOpCubicThreadedTest.cpp46 pathA.setFillType((SkPath::FillType) e);
51 pathB.setFillType((SkPath::FillType) f);
H A DPathOpsOpRectThreadedTest.cpp50 pathA.setFillType((SkPath::FillType) e);
56 pathB.setFillType((SkPath::FillType) f);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
H A DSkiaUtils.h89 bool PLATFORM_EXPORT SkPathContainsPoint(const SkPath&, const FloatPoint&, SkPath::FillType);
/external/chromium_org/third_party/skia/include/core/
H A DSkPath.h44 enum FillType { enum in class:SkPath
66 FillType getFillType() const { return (FillType)fFillType; }
73 void setFillType(FillType ft) {
78 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); }
513 static bool IsInverseFillType(FillType fill) {
529 static FillType ConvertToNonInverseFillType(FillType fill) {
534 return (FillType)(fill & 1);
894 * account the FillType
[all...]
/external/skia/include/core/
H A DSkPath.h44 enum FillType { enum in class:SkPath
66 FillType getFillType() const { return (FillType)fFillType; }
73 void setFillType(FillType ft) {
78 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); }
513 static bool IsInverseFillType(FillType fill) {
529 static FillType ConvertToNonInverseFillType(FillType fill) {
534 return (FillType)(fill & 1);
894 * account the FillType
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrGpu.h331 void getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings);
438 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) = 0;
439 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) = 0;
482 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
483 virtual void onDrawPath(const GrPath*, SkPath::FillType,
H A DGrInOrderDrawBuffer.h104 SkPath::FillType fFill;
111 SkPath::FillType fFill;
139 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
140 virtual void onDrawPath(const GrPath*, SkPath::FillType,
H A DGrDrawTarget.h338 void stencilPath(const GrPath*, SkPath::FillType fill);
344 void drawPath(const GrPath*, SkPath::FillType fill);
471 void executeDrawPath(const GrPath* path, SkPath::FillType fill,
853 virtual void onStencilPath(const GrPath*, SkPath::FillType) = 0;
854 virtual void onDrawPath(const GrPath*, SkPath::FillType,
H A DGrGpu.cpp269 void GrGpu::getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings) {
386 void GrGpu::onStencilPath(const GrPath* path, SkPath::FillType fill) {
398 void GrGpu::onDrawPath(const GrPath* path, SkPath::FillType fill,
/external/skia/src/gpu/
H A DGrGpu.h331 void getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings);
438 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) = 0;
439 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) = 0;
482 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
483 virtual void onDrawPath(const GrPath*, SkPath::FillType,
H A DGrInOrderDrawBuffer.h104 SkPath::FillType fFill;
111 SkPath::FillType fFill;
139 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
140 virtual void onDrawPath(const GrPath*, SkPath::FillType,
H A DGrDrawTarget.h338 void stencilPath(const GrPath*, SkPath::FillType fill);
344 void drawPath(const GrPath*, SkPath::FillType fill);
471 void executeDrawPath(const GrPath* path, SkPath::FillType fill,
853 virtual void onStencilPath(const GrPath*, SkPath::FillType) = 0;
854 virtual void onDrawPath(const GrPath*, SkPath::FillType,
/external/skia/gm/
H A Demptypath.cpp30 SkPath::FillType fill) {
44 SkPath::FillType fFill;
H A Dpathopsinverse.cpp66 SkPath::FillType oneF = oneFill ? SkPath::kInverseEvenOdd_FillType
69 SkPath::FillType twoF = twoFill ? SkPath::kInverseEvenOdd_FillType
H A Dfilltypes.cpp36 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft,
H A Dlinepaths.cpp27 SkPaint::Style style, SkPath::FillType fill,
44 SkPath::FillType fFill;
168 SkPaint::Style style, SkPath::FillType fill,
185 SkPath::FillType fFill;
H A Dquadpaths.cpp27 SkPaint::Style style, SkPath::FillType fill,
44 SkPath::FillType fFill;
169 SkPaint::Style style, SkPath::FillType fill,
186 SkPath::FillType fFill;
H A Dcubicpaths.cpp66 SkPaint::Style style, SkPath::FillType fill,
83 SkPath::FillType fFill;
209 SkPaint::Style style, SkPath::FillType fill,
226 SkPath::FillType fFill;
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFUtils.h51 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,
/external/skia/src/pdf/
H A DSkPDFUtils.h51 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawPath.cpp27 SK_MEMBER_PROPERTY(fillType, FillType),
172 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
/external/skia/src/animator/
H A DSkDrawPath.cpp27 SK_MEMBER_PROPERTY(fillType, FillType),
172 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL.h158 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
159 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
247 void flushPathStencilSettings(SkPath::FillType fill);

Completed in 2309 milliseconds

12