OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fDX
(Results
1 - 10
of
10
) sorted by null
/external/skia/src/images/
SkScaledBitmapSampler.h
25
int srcDX() const { return
fDX
; }
76
int
fDX
; // step between X samples
SkScaledBitmapSampler.cpp
600
fDX
= fDY = 1;
619
fDX
= dx;
622
SkASSERT(
fDX
> 0 && (fX0 +
fDX
* (fScaledWidth - 1)) < width);
742
fDX
* fSrcPixelSize, fCurrY, fCTable);
770
fDX
* fSrcPixelSize, dstY, fCTable);
/external/skia/src/core/
SkEdge.h
31
SkFixed
fDX
;
52
SkDebugf("edge: firstY:%d lastY:%d x:%g dx:%g w:%d\n", fFirstY, fLastY, SkFixedToFloat(fX), SkFixedToFloat(
fDX
), fWinding);
125
fDX
= slope;
SkEdge.cpp
77
fDX
= slope;
118
fDX
= slope;
135
fX +=
fDX
* (clip.fTop - top);
SkEdgeBuilder.cpp
26
if (last->fCurveCount || last->
fDX
|| edge->fX != last->fX) {
67
return !edge->
fDX
&& !edge->fCurveCount;
SkScan_Path.cpp
190
newX = currE->fX + currE->
fDX
;
268
leftE->
fDX
> riteE->
fDX
)) {
277
SkFixed dLeft = leftE->
fDX
;
279
SkFixed dRite = riteE->
fDX
;
/external/skia/samplecode/
SampleCircle.cpp
31
SkScalar
fDX
, fDY, fRAD;
34
fDX
= fDY = fRAD = 0;
SampleBitmapRect.cpp
184
SkScalar
fDX
;
189
bounce(&fSrcR.fLeft, &
fDX
, fLimitR.fLeft, fLimitR.fRight - width);
195
fDX
= SK_Scalar1;
/external/skia/gm/
imagefiltersgraph.cpp
59
canvas.drawBitmap(source,
fDX
- bounds.left(), fDY - bounds.top(), &paint);
72
buffer.writeScalar(
fDX
);
78
: SkImageFilter(1, &input),
fDX
(dx), fDY(dy) {}
80
SkScalar
fDX
, fDY;
/external/skia/src/gpu/
GrTessellator.cpp
257
double
fDX
; // The line equation for this edge, in implicit form.
258
double fDY; // fDY * x +
fDX
* y + fC = 0, for point (x, y) on the line.
261
return fDY * p.fX -
fDX
* p.fY + fC;
270
fDX
= static_cast<double>(fBottom->fPoint.fX) - fTop->fPoint.fX;
282
double denom =
fDX
* other.fDY - fDY * other.
fDX
;
288
double sNumer = dy * other.
fDX
- dx * other.fDY;
289
double tNumer = dy *
fDX
- dx * fDY;
298
p->fX = SkDoubleToScalar(fTop->fPoint.fX + s *
fDX
);
[
all
...]
Completed in 301 milliseconds