HomeSort by relevance Sort by last modified time
    Searched refs:DashInfo (Results 1 - 14 of 14) sorted by null

  /external/skia/src/gpu/
GrStrokeInfo.cpp 14 SkPathEffect::DashInfo info;
GrStrokeInfo.h 71 SkPathEffect::DashInfo dashInfo;
72 fDashType = pe->asADash(&dashInfo);
74 fIntervals.reset(dashInfo.fCount);
75 dashInfo.fIntervals = fIntervals.get();
76 pe->asADash(&dashInfo);
77 fDashPhase = dashInfo.fPhase;
85 * Like the above, but sets with an explicit SkPathEffect::DashInfo
87 bool setDashInfo(const SkPathEffect::DashInfo& info) {
  /external/skia/src/utils/
SkDashPathPriv.h 29 const SkPathEffect::DashInfo& info);
SkDashPath.cpp 321 const SkRect* cullRect, const SkPathEffect::DashInfo& info) {
SkLua.cpp 299 void SkLua::pushDash(const SkPathEffect::DashInfo& info, const char key[]) {
    [all...]
  /external/skia/include/core/
SkPathEffect.h 109 * and None otherwise. If a non NULL info is passed in, the various DashInfo will be filled
122 struct DashInfo {
123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
132 virtual DashType asADash(DashInfo* info) const;
  /external/skia/include/effects/
SkDashPathEffect.h 52 DashType asADash(DashInfo* info) const override;
  /external/skia/tests/
AsADashTest.cpp 16 SkPathEffect::DashInfo info;
38 SkPathEffect::DashInfo info;
  /external/skia/include/utils/
SkLua.h 57 void pushDash(const SkPathEffect::DashInfo&, const char tableKey[] = NULL);
  /external/skia/src/core/
SkPathEffect.cpp 25 SkPathEffect::DashType SkPathEffect::asADash(DashInfo* info) const {
SkPictureContentInfo.cpp 49 SkPathEffect::DashInfo info;
SkPicture.cpp 155 SkPathEffect::DashInfo info;
  /external/skia/src/gpu/effects/
GrDashingEffect.cpp 761 * interval). The radius of the dots is given by the strokeWidth and the spacing by the DashInfo.
770 typedef SkPathEffect::DashInfo DashInfo;
    [all...]
  /external/skia/src/effects/
SkDashPathEffect.cpp 347 SkPathEffect::DashType SkDashPathEffect::asADash(DashInfo* info) const {

Completed in 1331 milliseconds