OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fIntervals
(Results
1 - 6
of
6
) sorted by null
/external/skia/include/effects/
SkDashPathEffect.h
63
SkScalar*
fIntervals
;
/external/skia/src/effects/gradients/
Sk4fGradientBase.h
47
SkSTArray<8, Interval, true>
fIntervals
;
/external/skia/src/gpu/
GrStrokeInfo.h
39
fIntervals
.reset(src.getDashCount());
40
memcpy(
fIntervals
.get(), src.
fIntervals
.get(),
fIntervals
.count() * sizeof(SkScalar));
62
fIntervals
.reset(other.getDashCount());
63
memcpy(
fIntervals
.get(), other.
fIntervals
.get(),
fIntervals
.count() * sizeof(SkScalar));
77
fIntervals
.count() != other.
fIntervals
.count() |
[
all
...]
/external/skia/include/core/
SkPathEffect.h
120
DashInfo() :
fIntervals
(NULL), fCount(0), fPhase(0) {}
122
SkScalar*
fIntervals
; //!< Length of on/off intervals for dashed lines
/external/skia/bench/
DashBench.cpp
36
SkTDArray<SkScalar>
fIntervals
;
44
fIntervals
.append(count, intervals);
46
fIntervals
[i] *= width;
75
paint.setPathEffect(SkDashPathEffect::Create(
fIntervals
.begin(),
76
fIntervals
.count(), 0))->unref();
/external/skia/src/gpu/effects/
GrDashingEffect.cpp
259
SkScalar
fIntervals
[2];
320
memcpy(
fIntervals
, geo.
fIntervals
, sizeof(geo.
fIntervals
));
324
SkScalar
fIntervals
[2];
412
if (draw.fPhase > 0 && draw.fPhase < draw.
fIntervals
[0]) {
416
startPts[1].fX = SkMinScalar(startPts[0].fX + draw.
fIntervals
[0] - draw.fPhase,
422
startAdj = draw.
fIntervals
[0] + draw.
fIntervals
[1] - draw.fPhase;
428
startAdj += calc_start_adjustment(draw.
fIntervals
, draw.fPhase)
[
all
...]
Completed in 204 milliseconds