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

  /external/dng_sdk/source/
dng_lens_correction.cpp 39 , fCenter (0.5, 0.5)
51 , fCenter (center)
58 DNG_ASSERT (fCenter.h >= 0.0 && fCenter.h <= 1.0,
61 DNG_ASSERT (fCenter.v >= 0.0 && fCenter.v <= 1.0,
161 if (fCenter.h < 0.0 ||
162 fCenter.h > 1.0 ||
163 fCenter.v < 0.0 ||
164 fCenter.v > 1.0
    [all...]
dng_lens_correction.h 59 // the distance from fCenter to the farthest corner of the image's
60 // active area. Each component of fCenter must lie in the range [0,1].
62 dng_point_real64 fCenter;
77 /// \param fCenter The image center in relative coordinates.
80 const dng_point_real64 &fCenter);
243 // Let (xCenter, yCenter) be the optical image center (see fCenter,
310 const dng_point_real64 &fCenter);
363 // Let (xCenter, yCenter) be the optical image center (see fCenter,
416 const dng_point_real64 &fCenter);
552 dng_point_real64 fCenter;
    [all...]
  /external/skia/gm/
ninepatchstretch.cpp 59 SkIRect fCenter;
74 fImage.reset(make_image(canvas, &fCenter));
79 const SkScalar fixed = SkIntToScalar(fBitmap.width() - fCenter.width());
102 canvas->drawBitmapNine(fBitmap, fCenter, r, &paint);
103 canvas->drawImageNine(fImage, fCenter, r.makeOffset(360, 0), &paint);
  /external/skia/src/gpu/batches/
GrNinePatch.cpp 36 SkIRect fCenter;
47 geo.fCenter = center;
67 fGeoData[i].fCenter.fLeft, fGeoData[i].fCenter.fTop,
68 fGeoData[i].fCenter.fRight, fGeoData[i].fCenter.fBottom,
115 SkNinePatchIter iter(fImageWidth, fImageHeight, geo.fCenter, geo.fDst);
  /external/skia/samplecode/
SampleAtlas.cpp 76 SkPoint fCenter;
86 fCenter += fVelocity;
87 if (fCenter.fX > bounds.right()) {
90 } else if (fCenter.fX < bounds.left()) {
94 if (fCenter.fY > bounds.bottom()) {
98 } else if (fCenter.fY < bounds.top()) {
123 return SkRSXform::MakeFromRadians(fScale, fRadian, fCenter.x(), fCenter.y(),
155 fRec[i].fCenter.set(sx + cell/2, sy + 3*cell/4);
SampleLayers.cpp 247 SkPoint fCenter;
253 fCenter.set(200, 150);
278 m.postTranslate(fCenter.x(), fCenter.y());
303 fCenter = click->fCurr;
SamplePathClip.cpp 27 SkPoint fCenter;
29 PathClipView() : fOval(SkRect::MakeWH(200, 50)), fCenter(SkPoint::Make(250, 250)) {}
41 const SkRect oval = fOval.makeOffset(fCenter.fX - fOval.centerX(),
42 fCenter.fY - fOval.centerY());
66 fCenter.set(click->fCurr.fX, click->fCurr.fY);
  /external/skia/tests/
InfRectTest.cpp 18 SkIPoint fCenter;
31 gData[index].fRect.centerX() == gData[index].fCenter.x());
33 gData[index].fRect.centerY() == gData[index].fCenter.y());
  /external/skia/src/effects/gradients/
SkRadialGradient.h 47 const SkPoint fCenter;
SkSweepGradient.h 47 const SkPoint fCenter;
SkSweepGradient.cpp 19 , fCenter(SkPoint::Make(cx, cy))
28 info->fPoint[0] = fCenter;
45 buffer.writePoint(fCenter);
261 str->appendScalar(fCenter.fX);
263 str->appendScalar(fCenter.fY);
SkRadialGradient.cpp 39 , fCenter(center)
58 info->fPoint[0] = fCenter;
77 buffer.writePoint(fCenter);
374 str->appendScalar(fCenter.fX);
376 str->appendScalar(fCenter.fY);
  /external/skia/src/gpu/effects/
GrOvalEffect.cpp 28 const SkPoint& getCenter() const { return fCenter; }
44 SkPoint fCenter;
64 : fCenter(c)
73 return fEdgeType == ce.fEdgeType && fCenter == ce.fCenter && fRadius == ce.fRadius;
193 const SkPoint& getCenter() const { return fCenter; }
209 SkPoint fCenter;
231 : fCenter(c)
240 return fEdgeType == ee.fEdgeType && fCenter == ee.fCenter && fRadii == ee.fRadii
    [all...]
  /external/skia/include/core/
SkMaskFilter.h 192 SkIPoint fCenter; // identifies center row/col for stretching
  /external/skia/src/core/
SkMaskFilter.cpp 231 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, true, clip, blitter);
252 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, 1 == rectCount, clip,
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 440 patch->fCenter.fX = SkScalarCeilToInt(leftUnstretched) + 1;
441 patch->fCenter.fY = SkScalarCeilToInt(topUnstretched) + 1;
570 patch->fCenter = center;
    [all...]
  /external/skia/tools/debugger/
SkDrawCommand.h 259 SkIRect fCenter;
SkDrawCommand.cpp     [all...]

Completed in 195 milliseconds