2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkDashPathEffect_DEFINED
|
|
|
|
#define SkDashPathEffect_DEFINED
|
|
|
|
|
|
|
|
#include "SkPathEffect.h"
|
|
|
|
|
|
|
|
/** \class SkDashPathEffect
|
|
|
|
|
|
|
|
SkDashPathEffect is a subclass of SkPathEffect that implements dashing
|
|
|
|
*/
|
2011-03-15 21:27:08 +00:00
|
|
|
class SK_API SkDashPathEffect : public SkPathEffect {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
|
|
|
/** The intervals array must contain an even number of entries (>=2), with the even
|
|
|
|
indices specifying the "on" intervals, and the odd indices specifying the "off"
|
|
|
|
intervals. phase is an offset into the intervals array (mod the sum of all of the
|
|
|
|
intervals).
|
|
|
|
Note: only affects framed paths
|
|
|
|
*/
|
|
|
|
SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase, bool scaleToFit = false);
|
|
|
|
virtual ~SkDashPathEffect();
|
|
|
|
|
|
|
|
// overrides for SkPathEffect
|
|
|
|
// This method is not exported to java.
|
|
|
|
virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
|
|
|
|
|
|
|
// overrides for SkFlattenable
|
|
|
|
// This method is not exported to java.
|
|
|
|
virtual Factory getFactory();
|
2011-06-21 19:24:00 +00:00
|
|
|
static SkFlattenable* CreateProc(SkFlattenableReadBuffer&);
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
protected:
|
|
|
|
SkDashPathEffect(SkFlattenableReadBuffer&);
|
2012-03-29 15:18:04 +00:00
|
|
|
virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SkScalar* fIntervals;
|
|
|
|
int32_t fCount;
|
|
|
|
// computed from phase
|
|
|
|
SkScalar fInitialDashLength;
|
|
|
|
int32_t fInitialDashIndex;
|
|
|
|
SkScalar fIntervalLength;
|
|
|
|
bool fScaleToFit;
|
|
|
|
|
|
|
|
typedef SkPathEffect INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|