/external/skia/include/effects/ |
SkDashPathEffect.h | 13 /** \class SkDashPathEffect 15 SkDashPathEffect is a subclass of SkPathEffect that implements dashing 17 class SK_API SkDashPathEffect : public SkPathEffect { 51 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDashPathEffect) 58 virtual ~SkDashPathEffect(); 59 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase);
|
/external/skia/gm/ |
bug530095.cpp | 10 #include "SkDashPathEffect.h" 23 paint.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, -40))->unref(); 29 paint.setPathEffect(SkDashPathEffect::Create(smIntervals, smIntervalCount, -0.40f))->unref(); 37 paint.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, 0))->unref(); 44 paint.setPathEffect(SkDashPathEffect::Create(smIntervals, smIntervalCount, 0))->unref();
|
dashcubics.cpp | 12 #include "SkDashPathEffect.h" 19 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 0);
|
stroketext.cpp | 10 #include "SkDashPathEffect.h" 58 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), phase))->unref();
|
dashcircle.cpp | 10 #include "SkDashPathEffect.h" 71 p.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, 0))->unref();
|
dashing.cpp | 11 #include "SkDashPathEffect.h" 24 p.setPathEffect(SkDashPathEffect::Create(intervals, 2, phase))->unref(); 177 paint.setPathEffect(SkDashPathEffect::Create(vals, count, phase))->unref(); 225 p.setPathEffect(SkDashPathEffect::Create(intervals, 2, phase))->unref(); 501 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), 0))->unref(); 512 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), 0))->unref();
|
pathcontourstart.cpp | 10 #include "SkDashPathEffect.h" 30 SkDashPathEffect::Create(intervals.begin(), intervals.count(), 0));
|
patheffects.cpp | 13 #include "SkDashPathEffect.h" 48 paint->setPathEffect(SkDashPathEffect::Create(inter, SK_ARRAY_COUNT(inter),
|
strokes.cpp | 11 #include "SkDashPathEffect.h" 131 dashPaint.setPathEffect(SkDashPathEffect::Create(intervals, 2, 0))->unref();
|
/external/skia/src/animator/ |
SkDrawDash.cpp | 11 #include "SkDashPathEffect.h" 34 return SkDashPathEffect::Create(intervals.begin(), count, phase);
|
/external/skia/src/effects/ |
SkDashPathEffect.cpp | 8 #include "SkDashPathEffect.h" 15 SkDashPathEffect::SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase) 35 SkDashPathEffect::~SkDashPathEffect() { 39 bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src, 159 bool SkDashPathEffect::asPoints(PointData* results, 348 SkPathEffect::DashType SkDashPathEffect::asADash(DashInfo* info) const { 359 void SkDashPathEffect::flatten(SkWriteBuffer& buffer) const { 364 SkFlattenable* SkDashPathEffect::CreateProc(SkReadBuffer& buffer) [all...] |
/external/skia/tests/ |
DashPathEffectTest.cpp | 10 #include "SkDashPathEffect.h" 14 // crbug.com/348821 was rooted in SkDashPathEffect refusing to flatten and unflatten itself when 21 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase)); 36 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, count, 0.0f)); 98 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
|
AsADashTest.cpp | 11 #include "SkDashPathEffect.h" 25 SkAutoTUnref<SkPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase)); 36 SkAutoTUnref<SkPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
|
DrawPathTest.cpp | 10 #include "SkDashPathEffect.h" 195 SkAutoTUnref<SkPathEffect> dontAssert(SkDashPathEffect::Create(vals, 4, -248.135982067f)); 205 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, 2, -10)); 275 // in SkDashPathEffect::filterPath() due to single precision rounding. 284 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0)); 304 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
|
GpuDrawPathTest.cpp | 20 #include "SkDashPathEffect.h" 76 SkAutoTUnref<SkPathEffect> dashEffect(SkDashPathEffect::Create(intervals, 2, 0));
|
PictureTest.cpp | 13 #include "SkDashPathEffect.h" 149 SkAutoTUnref<SkPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0)); 238 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 25); 255 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 25); [all...] |
/external/skia/src/ports/ |
SkGlobalInitialization_default.cpp | 23 #include "SkDashPathEffect.h" 100 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkDashPathEffect)
|
/external/skia/bench/ |
DashBench.cpp | 11 #include "SkDashPathEffect.h" 75 paint.setPathEffect(SkDashPathEffect::Create(fIntervals.begin(), 189 fPE.reset(SkDashPathEffect::Create(vals, 2, 0)); 227 fPE.reset(SkDashPathEffect::Create(vals, 2, 0)); 266 fPathEffect.reset(SkDashPathEffect::Create(vals, 2, SK_Scalar1)); 326 fPathEffect.reset(SkDashPathEffect::Create(intervals, 392 fPathEffect.reset(SkDashPathEffect::Create(vals, 2, SK_Scalar1));
|
/external/skia/samplecode/ |
SampleDash.cpp | 13 #include "SkDashPathEffect.h" 73 SkDashPathEffect dash(interval, len, 0);
|
SampleFilterFuzz.cpp | 22 #include "SkDashPathEffect.h" 449 pathEffect = SkDashPathEffect::Create(intervals, count, make_scalar());
|
SampleSlides.cpp | 29 #include "SkDashPathEffect.h" 62 paint->setPathEffect(SkDashPathEffect::Create(inter, SK_ARRAY_COUNT(inter),
|
/frameworks/base/core/jni/android/graphics/ |
PathEffect.cpp | 4 #include "SkDashPathEffect.h" 44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase);
|
/frameworks/base/libs/hwui/tests/unit/ |
BakedOpDispatcherTests.cpp | 29 #include <SkDashPathEffect.h> 88 auto dashEffect = SkDashPathEffect::Create(intervals, 2, 0);
|
/external/pdfium/core/src/fxge/skia/ |
fx_skia_device.cpp | 10 #include "SkDashPathEffect.h" 231 SkDashPathEffect* pEffect = new SkDashPathEffect(
|
/external/skia/tools/json/ |
SkJSONRenderer.cpp | 11 #include "SkDashPathEffect.h" 445 target->setPathEffect(SkDashPathEffect::Create(intervals, count, phase)); [all...] |