Searched defs:fScale (Results 26 - 32 of 32) sorted by relevance

12

/external/skia/src/gpu/text/
H A DGrAtlasTextBlob.h509 , fScale(scale)
514 SkScalar fScale; member in struct:GrAtlasTextBlob::BigGlyph
/external/pdfium/xfa/src/fgas/src/layout/
H A Dfx_rtfbreak.cpp1436 FX_FLOAT fScale = fFontSize / 1000.0f; local
1446 FX_FLOAT fLeft = std::max(0.0f, bbox.left * fScale);
1447 FX_FLOAT fHeight = FXSYS_fabs(bbox.height * fScale);
1499 fCharWidth = iCharWidth * fScale;
H A Dfx_textbreak.cpp1567 FX_FLOAT fScale = fFontSize / 1000.0f; local
1577 FX_FLOAT fLeft = std::max(0.0f, bbox.left * fScale);
1578 FX_FLOAT fHeight = FXSYS_fabs(bbox.height * fScale);
1635 fCharWidth = iCharWidth * fScale;
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp212 SkVector fScale; member in class:SkScalerContext_FreeType
811 fRec.computeMatrices(SkScalerContextRec::kFull_PreMatrixScale, &fScale, &fMatrix22Scalar);
815 fScaleX = SkScalarToFDot6(fScale.fX);
816 fScaleY = SkScalarToFDot6(fScale.fY);
1206 if (!FT_IS_SCALABLE(fFace) && !SkScalarNearlyZero(fScale.fY) && fFace->size->metrics.y_ppem) {
1208 scaleGlyphMetrics(*glyph, fScale.fY / fFace->size->metrics.y_ppem);
1293 SkScalar scaleX = fScale.x();
1294 SkScalar scaleY = fScale.y();
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp173 fScale = 1;
180 fScale = 1;
198 if (fScale != 1) {
199 outStr.appendf(" scale=%d", fScale);
219 int fScale; member in struct:TestResult
478 fScale = 1;
479 while (width / fScale > 32767 || height / fScale > 32767) {
480 ++fScale;
483 int dimX = SkScalarCeilToInt(width / fScale);
[all...]
/external/dng_sdk/source/
H A Ddng_negative.h84 real64 fScale; member in class:dng_noise_function
93 : fScale (0.0)
105 : fScale (scale)
117 return sqrt (fScale * x + fOffset);
124 return fScale;
138 fScale = scale;
152 return (fScale > 0.0 && fOffset >= 0.0);
/external/skia/src/core/
H A DSkPaint.cpp735 SkCanonicalizePaint(const SkPaint& paint) : fPaint(&paint), fScale(0) {
738 fScale = p->setupForAsPaths();
749 SkScalar getScale() const { return fScale; }
753 SkScalar fScale; member in class:SkCanonicalizePaint
2312 fScale = paint.getTextSize() / SkPaint::kCanonicalTextSizeForPaths;
2314 fPaint.setStrokeWidth(fPaint.getStrokeWidth() / fScale);
2317 fScale = SK_Scalar1;
2344 &count, nullptr), fScale);
2367 fXPos += SkScalarMul(SkFixedToScalar(fPrevAdvance + fAutoKern.adjust(glyph)), fScale);
2389 fXPos += SkScalarMul(SkFixedToScalar(fPrevAdvance + fAutoKern.adjust(glyph)), fScale);
[all...]

Completed in 357 milliseconds

12