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

  /frameworks/base/libs/hwui/tests/microbench/
PathParserBench.cpp 22 #include <SkPath.h>
30 SkPath skPath;
34 PathParser::parseAsciiStringForSkPath(&skPath, &result, sPathString, length);
36 benchmark::DoNotOptimize(&skPath);
  /external/skia/src/gpu/gl/
GrGLPathRange.cpp 53 void GrGLPathRange::onInitPath(int index, const SkPath& origSkPath) const {
70 const SkPath* skPath = &origSkPath;
71 SkTLazy<SkPath> tmpPath;
79 if (!fStyle.applyToPath(tmpPath.init(), &fill, *skPath, SK_Scalar1)) {
85 skPath = tmpPath.get();
88 GrGLPath::InitPathObjectPathData(gpu, fBasePathID + index, *skPath);
GrGLPath.cpp 14 inline GrGLubyte verb_to_gl_path_cmd(SkPath::Verb verb) {
23 GR_STATIC_ASSERT(0 == SkPath::kMove_Verb);
24 GR_STATIC_ASSERT(1 == SkPath::kLine_Verb);
25 GR_STATIC_ASSERT(2 == SkPath::kQuad_Verb);
26 GR_STATIC_ASSERT(3 == SkPath::kConic_Verb);
27 GR_STATIC_ASSERT(4 == SkPath::kCubic_Verb);
28 GR_STATIC_ASSERT(5 == SkPath::kClose_Verb);
35 inline int num_coords(SkPath::Verb verb) {
44 GR_STATIC_ASSERT(0 == SkPath::kMove_Verb);
45 GR_STATIC_ASSERT(1 == SkPath::kLine_Verb)
    [all...]
  /external/skia/src/gpu/ops/
GrStencilAndCoverPathRenderer.cpp 58 SkPath skPath;
59 shape.asPath(&skPath);
60 path = resourceProvider->createPath(skPath, shape.style());
66 SkPath skPath;
67 shape.asPath(&skPath);
68 SkASSERT(path->isEqualTo(skPath, shape.style()));
  /frameworks/base/core/jni/
android_util_PathParser.cpp 21 #include <SkPath.h>
34 SkPath* skPath = reinterpret_cast<SkPath*>(skPathHandle);
37 PathParser::parseAsciiStringForSkPath(skPath, &result, pathString, strLength);
98 SkPath* skPath = reinterpret_cast<SkPath*>(outPathPtr);
99 VectorDrawableUtils::verbsToPath(skPath, *pathData);
  /frameworks/base/libs/hwui/tests/unit/
VectorDrawableTests.cpp 32 const std::function<void(SkPath*)> skPathLamda;
48 [](SkPath* outPath) {
69 [](SkPath* outPath) {
111 [](SkPath* outPath) {
146 [](SkPath* outPath) {
173 [](SkPath* outPath) {
203 [](SkPath* outPath) {
223 [](SkPath* outPath) {}
261 SkPath skPath;
    [all...]
  /external/skia/experimental/SkV8Example/
Path2DBuilder.cpp 13 #include "SkPath.h"
212 SkPath::Direction dir = SkPath::kCW_Direction;
214 dir = SkPath::kCCW_Direction;
254 SkPath* skPath = new SkPath(path->fSkPath);
258 Path2D* pathWrap = new Path2D(skPath);
  /external/pdfium/core/fxge/skia/
fx_skia_device.cpp 33 #include "third_party/skia/include/core/SkPath.h"
174 void DebugShowSkiaPath(const SkPath& path) {
210 const SkPath& path) {
247 void DebugDrawSkiaClipPath(SkCanvas* canvas, const SkPath& path) {
256 void DebugDrawSkiaClipPath(SkCanvas* canvas, const SkPath& path) {}
278 SkPath BuildPath(const CFX_PathData* pPathData) {
279 SkPath skPath;
286 skPath.moveTo(point.x, point.y);
288 skPath.lineTo(point.x, point.y)
    [all...]

Completed in 197 milliseconds