HomeSort by relevance Sort by last modified time
    Searched defs:fillType (Results 1 - 16 of 16) sorted by null

  /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);
  /external/skia/src/gpu/batches/
GrDrawPathBatch.h 29 GrPathRendering::FillType fillType() const { return fFillType; }
35 GrPathRendering::FillType fill)
54 GrPathRendering::FillType fFillType;
67 GrPathRendering::FillType fill, const GrPath* path) {
76 GrDrawPathBatch(const SkMatrix& viewMatrix, GrColor color, GrPathRendering::FillType fill,
163 SkScalar y, GrColor color, GrPathRendering::FillType fill,
176 GrColor color, GrPathRendering::FillType fill, GrPathRange* range,
  /external/skia/src/pathops/
SkOpBuilder.cpp 29 SkPath::FillType fillType = path->getFillType();
30 if (fillType == SkPath::kInverseEvenOdd_FillType) {
31 fillType = SkPath::kInverseWinding_FillType;
32 } else if (fillType == SkPath::kEvenOdd_FillType) {
33 fillType = SkPath::kWinding_FillType;
42 path->setFillType(fillType);
71 path->setFillType(fillType);
85 path->setFillType(fillType);
SkPathOpsSimplify.cpp 170 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
176 result->setFillType(fillType);
196 result->setFillType(fillType);
217 result->setFillType(fillType);
228 temp.setFillType(fillType);
232 result->setFillType(fillType);
SkPathOpsOp.cpp 218 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", one.getFillType());
222 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", two.getFillType());
266 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
296 result->setFillType(fillType);
318 result->setFillType(fillType);
323 temp.setFillType(fillType);
327 result->setFillType(fillType);
SkPathOpsDebug.cpp     [all...]
  /external/skia/tools/debugger/
SkDebugCanvas.cpp 588 SkPath::FillType fillType = path.getFillType();
591 gFillTypeStrs[fillType]);
SkDrawCommand.cpp 69 #define SKDEBUGCANVAS_ATTRIBUTE_FILLTYPE "fillType"
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 79 final FillType fillType = getFillType();
81 setFillType(fillType);
203 public enum FillType {
224 FillType(int ni) {
232 static final FillType[] sFillTypeArray = {
233 FillType.WINDING,
234 FillType.EVEN_ODD,
235 FillType.INVERSE_WINDING,
236 FillType.INVERSE_EVEN_OD
    [all...]
  /external/skia/tools/json/
SkJSONRenderer.cpp 553 const char* fillType = path[SKJSONCANVAS_ATTRIBUTE_FILLTYPE].asCString();
554 if (!strcmp(fillType, SKJSONCANVAS_FILLTYPE_WINDING)) {
557 else if (!strcmp(fillType, SKJSONCANVAS_FILLTYPE_EVENODD)) {
560 else if (!strcmp(fillType, SKJSONCANVAS_FILLTYPE_INVERSEWINDING)) {
563 else if (!strcmp(fillType, SKJSONCANVAS_FILLTYPE_INVERSEEVENODD)) {
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.h 219 int fillType = 0; /* non-zero or kWinding_FillType in Skia */
308 return mPrimitiveFields.fillType;
314 int fillType) {
326 mPrimitiveFields.fillType = fillType;
347 fillType,
  /external/skia/src/gpu/
GrTessellator.cpp 622 inline bool apply_fill_type(SkPath::FillType fillType, int winding) {
623 switch (fillType) {
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 202 * <dt><code>android:fillType</code></dt>
203 * <dd>Sets the fillType for a path. The types can be either "evenOdd" or "nonZero". They behave the
    [all...]
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 2265 milliseconds