HomeSort by relevance Sort by last modified time
    Searched refs:FillType (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /cts/tests/tests/graphics/src/android/graphics/cts/
Path_FillTypeTest.java 20 import android.graphics.Path.FillType;
26 assertEquals(FillType.WINDING, FillType.valueOf("WINDING"));
27 assertEquals(FillType.EVEN_ODD, FillType.valueOf("EVEN_ODD"));
28 assertEquals(FillType.INVERSE_WINDING, FillType.valueOf("INVERSE_WINDING"));
29 assertEquals(FillType.INVERSE_EVEN_ODD, FillType.valueOf("INVERSE_EVEN_ODD"));
30 // Every FillType element will be tested somewhere else
    [all...]
PathTest.java 79 Path.FillType expected1 = Path.FillType.EVEN_ODD;
80 Path.FillType expected2 = Path.FillType.INVERSE_EVEN_ODD;
81 Path.FillType expected3 = Path.FillType.INVERSE_WINDING;
82 Path.FillType expected4 = Path.FillType.WINDING;
86 // set FillType by {@link Path#setFillType(FillType)}
    [all...]
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
PathTest.java 29 final Path.FillType defaultFillType = path.getFillType();
30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
31 assertFalse(fillType.equals(defaultFillType)); // Sanity check for the test itself.
33 path.setFillType(fillType);
35 assertEquals(path.getFillType(), fillType);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 50 private void showPath(Canvas canvas, int x, int y, Path.FillType ft,
70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
  /external/chromium_org/third_party/skia/tests/
PathOpsInverseTest.cpp 16 one.setFillType((SkPath::FillType) oneFill);
23 two.setFillType((SkPath::FillType) twoFill);
PathOpsExtendedTest.h 40 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType );
  /external/skia/tests/
PathOpsInverseTest.cpp 16 one.setFillType((SkPath::FillType) oneFill);
23 two.setFillType((SkPath::FillType) twoFill);
  /external/chromium_org/third_party/skia/src/gpu/
GrGpu.h 334 void getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings);
445 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) = 0;
446 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) = 0;
448 SkPath::FillType, SkStrokeRec::Style) = 0;
488 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
489 virtual void onDrawPath(const GrPath*, SkPath::FillType,
492 SkPath::FillType, SkStrokeRec::Style,
GrInOrderDrawBuffer.h 107 SkPath::FillType fFill;
114 SkPath::FillType fFill;
125 SkPath::FillType fFill;
155 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
156 virtual void onDrawPath(const GrPath*, SkPath::FillType,
159 SkPath::FillType, SkStrokeRec::Style,
GrDrawTarget.h 340 void stencilPath(const GrPath*, SkPath::FillType fill);
346 void drawPath(const GrPath*, SkPath::FillType fill);
358 const SkMatrix* transforms, SkPath::FillType fill,
511 void executeDrawPath(const GrPath* path, SkPath::FillType fill,
520 const SkMatrix* transforms, SkPath::FillType fill,
    [all...]
  /external/skia/src/gpu/
GrGpu.h 334 void getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings);
445 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) = 0;
446 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) = 0;
448 SkPath::FillType, SkStrokeRec::Style) = 0;
488 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
489 virtual void onDrawPath(const GrPath*, SkPath::FillType,
492 SkPath::FillType, SkStrokeRec::Style,
GrInOrderDrawBuffer.h 107 SkPath::FillType fFill;
114 SkPath::FillType fFill;
125 SkPath::FillType fFill;
155 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
156 virtual void onDrawPath(const GrPath*, SkPath::FillType,
159 SkPath::FillType, SkStrokeRec::Style,
GrDrawTarget.h 340 void stencilPath(const GrPath*, SkPath::FillType fill);
346 void drawPath(const GrPath*, SkPath::FillType fill);
358 const SkMatrix* transforms, SkPath::FillType fill,
511 void executeDrawPath(const GrPath* path, SkPath::FillType fill,
520 const SkMatrix* transforms, SkPath::FillType fill,
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 76 final FillType fillType = getFillType();
78 setFillType(fillType);
188 public enum FillType {
209 FillType(int ni) {
217 static final FillType[] sFillTypeArray = {
218 FillType.WINDING,
219 FillType.EVEN_ODD,
220 FillType.INVERSE_WINDING,
221 FillType.INVERSE_EVEN_OD
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
SkiaUtils.h 90 bool PLATFORM_EXPORT SkPathContainsPoint(const SkPath&, const FloatPoint&, SkPath::FillType);
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 44 enum FillType {
66 FillType getFillType() const { return (FillType)fFillType; }
73 void setFillType(FillType ft) {
77 /** Returns true if the filltype is one of the Inverse variants */
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)
    [all...]
  /external/skia/include/core/
SkPath.h 44 enum FillType {
66 FillType getFillType() const { return (FillType)fFillType; }
73 void setFillType(FillType ft) {
77 /** Returns true if the filltype is one of the Inverse variants */
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)
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
ShapeOpRect4x4_Test.cpp 33 pathA.setFillType((SkPath::FillType) e);
44 pathB.setFillType((SkPath::FillType) f);
EdgeWalker_Test.h 53 void outputProgress(const State4& state, const char* pathStr, SkPath::FillType );
  /external/chromium_org/third_party/skia/samplecode/
SampleEmptyPath.cpp 33 SkPath::FillType fill) {
47 SkPath::FillType fFill;
  /external/skia/experimental/Intersection/
ShapeOpRect4x4_Test.cpp 33 pathA.setFillType((SkPath::FillType) e);
44 pathB.setFillType((SkPath::FillType) f);
EdgeWalker_Test.h 53 void outputProgress(const State4& state, const char* pathStr, SkPath::FillType );
  /external/skia/samplecode/
SampleEmptyPath.cpp 33 SkPath::FillType fill) {
47 SkPath::FillType fFill;
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFUtils.h 51 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,
  /external/skia/src/pdf/
SkPDFUtils.h 51 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,

Completed in 667 milliseconds

1 2 3 4 5