/external/skia/tests/ |
D | PathOpsSkpTest.cpp | 20 SkPath pathB; in skpcheeseandburger_com225() local 21 pathB.setFillType(SkPath::kWinding_FillType); in skpcheeseandburger_com225() 22 pathB.moveTo(859.11792f, 397.320343f); in skpcheeseandburger_com225() 23 pathB.cubicTo(855.523071f, 399.691284f, 853.721191f, 402.40863f, 853.721191f, 405.552216f); in skpcheeseandburger_com225() 24 pathB.cubicTo(853.721191f, 407.911163f, 854.727478f, 410.115387f, 857.043518f, 412.252716f); in skpcheeseandburger_com225() 25 pathB.cubicTo(859.920532f, 414.916138f, 862.704773f, 417.086426f, 864.679382f, 418.852386f); in skpcheeseandburger_com225() 26 pathB.cubicTo(866.382446f, 420.371765f, 867.19104f, 422.108795f, 867.19104f, 423.506378f); in skpcheeseandburger_com225() 27 pathB.cubicTo(867.19104f, 424.551605f, 866.741821f, 425.539886f, 865.935242f, 426.281616f); in skpcheeseandburger_com225() 28 pathB.cubicTo(865.250366f, 426.910553f, 864.662415f, 427.339813f, 864.139282f, 427.4646f); in skpcheeseandburger_com225() 29 pathB.cubicTo(863.536377f, 427.605347f, 862.259521f, 426.491272f, 860.366821f, 424.208191f); in skpcheeseandburger_com225() [all …]
|
D | PathOpsOpTest.cpp | 33 SkPath path, pathB; in cubicOp1d() local 38 pathB.setFillType(SkPath::kWinding_FillType); in cubicOp1d() 39 pathB.moveTo(0,1); in cubicOp1d() 40 pathB.cubicTo(0,1, 1,0, 2,0); in cubicOp1d() 41 pathB.close(); in cubicOp1d() 42 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp1d() 46 SkPath path, pathB; in cubicOp2d() local 51 pathB.setFillType(SkPath::kWinding_FillType); in cubicOp2d() 52 pathB.moveTo(0,1); in cubicOp2d() 53 pathB.cubicTo(0,1, 2,0, 1,0); in cubicOp2d() [all …]
|
D | PathOpsOpRectThreadedTest.cpp | 57 SkPath pathA, pathB; in testPathOpsRectsMain() local 64 pathB.setFillType((SkPath::FillType) f); in testPathOpsRectsMain() 65 pathB.addRect(SkIntToScalar(a), SkIntToScalar(a), SkIntToScalar(b), in testPathOpsRectsMain() 67 pathB.addRect(SkIntToScalar(c), SkIntToScalar(c), SkIntToScalar(d), in testPathOpsRectsMain() 69 pathB.close(); in testPathOpsRectsMain() 74 testPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "rects"); in testPathOpsRectsMain()
|
D | PathOpsOpCubicThreadedTest.cpp | 29 SkPath pathA, pathB; in testOpCubicsMain() local 35 pathB.setFillType((SkPath::FillType) f); in testOpCubicsMain() 36 pathB.moveTo(SkIntToScalar(a), SkIntToScalar(b)); in testOpCubicsMain() 37 pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB), in testOpCubicsMain() 39 pathB.close(); in testOpCubicsMain() 67 if (!testPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "cubics")) { in testOpCubicsMain()
|
D | PathOpsOpCircleThreadedTest.cpp | 25 SkPath pathA, pathB; in testOpCirclesMain() local 49 pathB.setFillType((SkPath::FillType) f); in testOpCirclesMain() 50 pathB.addCircle(SkIntToScalar(a), SkIntToScalar(b), SkIntToScalar(c), in testOpCirclesMain() 56 testPathOp(state.fReporter, pathA, pathB, (SkPathOp) op, "circles"); in testOpCirclesMain()
|
D | PathOpsOpLoopThreadedTest.cpp | 53 SkPath pathA, pathB; in testOpLoopsMain() local 81 pathB.moveTo(SkIntToScalar(c), SkIntToScalar(d)); in testOpLoopsMain() 82 pathB.cubicTo(endC.fX, endC.fY, endD.fX, endD.fY, SkIntToScalar(a), SkIntToScalar(b)); in testOpLoopsMain() 83 pathB.close(); in testOpLoopsMain() 88 testPathOp(state.fReporter, pathA, pathB, kIntersect_SkPathOp, "loops"); in testOpLoopsMain()
|
D | ClipStackTest.cpp | 237 SkPath pathA, pathB; in test_bounds() local 240 pathB.addRoundRect(rectB, SkIntToScalar(5), SkIntToScalar(5)); in test_bounds() 257 pathB.setFillType(doInvB ? SkPath::kInverseEvenOdd_FillType : in test_bounds() 274 stack.clipDevPath(pathB, gOps[op], false); in test_bounds()
|
D | PathOpsIssue3651.cpp | 1096 SkPath pathB = path2(); in issue3651_1() local 1097 testPathOpCheck(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename, FLAGS_runFail); in issue3651_1() 1102 SkPath pathB = path4(); in issue3651_2() local 1103 testPathOp(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename); in issue3651_2() 1108 SkPath pathB = path6(); in issue3651_3() local 1109 testPathOp(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename); in issue3651_3()
|
/external/skia/include/gpu/gl/ |
D | GrGLFunctions.h | 240 …* GrGLInterpolatePathsProc)(GrGLuint resultPath, GrGLuint pathA, GrGLuint pathB, GrGLfloat weight);
|
/external/mesa3d/include/GL/ |
D | glext.h | 12576 GLAPI void APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat we… 12626 typedef void (APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB…
|