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

1 2 3

  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
PathTest.java 29 final Path.FillType defaultFillType = path.getFillType();
35 assertEquals(path.getFillType(), fillType);
  /external/skia/src/gpu/
GrPath.h 38 GrPathRendering::FillType getFillType() const { return fFillType; }
GrPath.cpp 28 builder[0] = path.getFillType();
50 builder[0] = path.getFillType();
116 builder[i++] = path.getFillType();
169 builder[1] = path.getFillType();
  /external/skia/src/gpu/batches/
GrStencilAndCoverPathRenderer.cpp 71 args.fTarget->stencilPath(*args.fPipelineBuilder, *args.fViewMatrix, p, p->getFillType());
106 args.fTarget->stencilPath(*pipelineBuilder, viewMatrix, p, p->getFillType());
145 GrDrawPathBatch::Create(viewMatrix, args.fColor, p->getFillType(), p));
GrDefaultPathRenderer.cpp 599 switch (path.getFillType()) {
744 SkASSERT(SkPath::kInverseEvenOdd_FillType != args.fPath->getFillType());
745 SkASSERT(SkPath::kInverseWinding_FillType != args.fPath->getFillType());
GrPLSPathRenderer.cpp 146 linesOnlyPath.setFillType(path.getFillType());
219 builder[1] = path.getFillType();
    [all...]
GrTessellatingPathRenderer.cpp 154 builder[1] = fPath.getFillType();
  /external/skia/tools/lua/
dump_clipstack_at_restore.lua 20 io.write(", fill: ", element["path"]:getFillType())
count_reduced_clipstacks.lua 29 info = info .. ", fill: " .. element["path"]:getFillType()
  /external/skia/src/pathops/
SkPathOpsOp.cpp 218 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", one.getFillType());
222 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", two.getFillType());
416 SkDebugf("%s did not expect failure\none: fill=%d\n", __FUNCTION__, one.getFillType());
418 SkDebugf("two: fill=%d\n", two.getFillType());
435 scaledA.setFillType(one.getFillType());
437 scaledB.setFillType(two.getFillType());
445 scaledOut.setFillType(result->getFillType());
449 SkDebugf("%s did not expect failure\none: fill=%d\n", __FUNCTION__, one.getFillType());
451 SkDebugf("two: fill=%d\n", two.getFillType());
SkOpEdgeBuilder.cpp 14 fXorMask[0] = fXorMask[1] = (fPath->getFillType() & 1) ? kEvenOdd_PathOpsMask
24 fXorMask[1] = (fPath->getFillType() & 1) ? kEvenOdd_PathOpsMask
SkOpBuilder.cpp 29 SkPath::FillType fillType = path->getFillType();
  /external/skia/experimental/SimpleCocoaApp/
SimpleApp.mm 150 SkASSERT(path.getFillType() < SkPath::kInverseWinding_FillType);
152 path.getFillType() == SkPath::kWinding_FillType ? "Winding" : "EvenOdd");
157 bool expected = (path.getFillType() == SkPath::kWinding_FillType && contours == 1)
158 || (path.getFillType() == SkPath::kEvenOdd_FillType && contours == 2);
  /external/skia/tests/
PathOpsSimplifyFailTest.cpp 65 REPORTER_ASSERT(reporter, result.getFillType() == SkPath::kWinding_FillType);
91 REPORTER_ASSERT(reporter, result.getFillType() != SkPath::kWinding_FillType);
SubsetPath.cpp 96 result.setFillType(fPath.getFillType());
183 result.setFillType(fPath.getFillType());
EmptyPathTest.cpp 51 paint.isAntiAlias(), path.getFillType(), path.countPoints());
PathOpsExtendedTest.cpp 532 scaledA.setFillType(a.getFillType());
534 scaledB.setFillType(b.getFillType());
542 scaledOut.setFillType(out.getFillType());
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 112 assertEquals(expected1, path.getFillType());
114 assertEquals(expected2, path.getFillType());
116 assertEquals(expected3, path.getFillType());
118 assertEquals(expected4, path.getFillType());
263 assertEquals(expected, path.getFillType());
  /external/skia/src/animator/
SkDrawPath.cpp 147 value->fOperand.fS32 = (int) fPath.getFillType();
  /frameworks/base/graphics/java/android/graphics/
Path.java 79 final FillType fillType = getFillType();
245 public FillType getFillType() {
  /external/skia/src/gpu/gl/
GrGLPath.cpp 312 fFillType = convert_skpath_filltype(skPath->getFillType());
  /frameworks/base/core/jni/android/graphics/
Path.cpp 78 static jint getFillType(JNIEnv* env, jobject clazz, jlong objHandle) {
80 return obj->getFillType();
480 {"native_getFillType","(J)I", (void*) SkPathGlue::getFillType},
  /external/skia/include/core/
SkPath.h 87 FillType getFillType() const { return (FillType)fFillType; }
    [all...]
  /external/skia/tools/debugger/
SkObjectParser.cpp 146 mPath->append(gFillStrings[path.getFillType()]);
  /external/skia/src/core/
SkScan_Path.cpp 505 walk_convex_edges(&headEdge, path.getFillType(), blitter, start_y, stop_y, nullptr);
514 walk_edges(&headEdge, path.getFillType(), blitter, start_y, stop_y, proc, rightEdge);

Completed in 574 milliseconds

1 2 3