Searched refs:fScale (Results 1 - 25 of 27) sorted by relevance

12

/external/skia/src/core/
H A DSkTextToPathIter.h23 SkScalar getPathScale() const { return fScale; }
38 SkScalar fScale; member in class:SkTextToPathIter
H A DSkMipMap.h27 float fScale; // < 1.0 member in struct:SkMipMap::Level
H A DSkBlitter_RGB16.cpp74 unsigned fScale; member in class:SkRGB16_Blitter
75 uint16_t fColor16; // already scaled by fScale
532 fScale = SkAlpha255To256(SkColorGetA(color));
546 fColor16 = SkPackRGB16( SkAlphaMul(r, fScale) >> (8 - SK_R16_BITS),
547 SkAlphaMul(g, fScale) >> (8 - SK_G16_BITS),
548 SkAlphaMul(b, fScale) >> (8 - SK_B16_BITS));
565 if (!fDoDither && 256 == fScale) {
585 unsigned scale = fScale;
634 SkRGB16_BlendBW(fDevice, mask, clip, 256 - fScale, fColor16);
646 unsigned scale256 = fScale;
[all...]
H A DSkPictureShader.cpp37 , fScale(scale) {
46 sizeof(fScale) +
57 SkSize fScale; member in struct:__anon13916::BitmapShaderKey
H A DSkPaint.cpp776 SkCanonicalizePaint(const SkPaint& paint) : fPaint(&paint), fScale(0) {
779 fScale = p->setupForAsPaths();
790 SkScalar getScale() const { return fScale; }
794 SkScalar fScale; member in class:SkCanonicalizePaint
2314 fScale = paint.getTextSize() / SkPaint::kCanonicalTextSizeForPaths;
2316 fPaint.setStrokeWidth(fPaint.getStrokeWidth() / fScale);
2319 fScale = SK_Scalar1;
2346 &count, NULL), fScale);
2369 fXPos += SkScalarMul(SkFixedToScalar(fPrevAdvance + fAutoKern.adjust(glyph)), fScale);
H A DSkMipMap.cpp274 levels[i].fScale = (float)width / src.width();
/external/skia/include/effects/
H A DSkTestImageFilters.h26 : INHERITED(1, &input), fScale(scale) {}
33 SkScalar fScale; member in class:SkDownSampleImageFilter
H A DSkDisplacementMapEffect.h62 SkScalar fScale; member in class:SkDisplacementMapEffect
/external/skia/bench/
H A DSKPBench.cpp20 , fScale(scale)
71 fSurfaces.top()->getCanvas()->scale(fScale, fScale);
115 trans.setTranslate(-fTileRects[j].fLeft/fScale,
116 -fTileRects[j].fTop/fScale);
129 const SkMatrix trans = SkMatrix::MakeTrans(-fTileRects[j].fLeft / fScale,
130 -fTileRects[j].fTop / fScale);
H A DSKPBench.h43 const SkScalar fScale; member in class:SKPBench
H A DPatchBench.cpp34 : fScale(scale)
106 fScale.x(), fScale.y());
127 canvas->scale(fScale.x(), fScale.y());
150 SkVector fScale; member in class:PatchBench
/external/skia/gm/
H A Dlcdtext.cpp106 SkScalar fScale; member in struct:LcdTextSizeGM::__anon13752
120 ScaleAbout(canvas, rec[i].fScale, rec[i].fScale, loc.x(), loc.y());
/external/skia/src/effects/
H A DSkTestImageFilters.cpp27 SkScalar scale = fScale;
81 buffer.writeScalar(fScale);
H A DSkDisplacementMapEffect.cpp187 , fScale(scale)
206 buffer.writeScalar(fScale);
248 SkVector scale = SkVector::Make(fScale, fScale);
267 dst->outset(fScale * SK_ScalarHalf, fScale * SK_ScalarHalf);
273 SkVector scale = SkVector::Make(fScale, fScale);
287 str->appendf("scale: %f ", fScale);
362 const SkVector& scale() const { return fScale; }
388 SkVector fScale; member in class:GrDisplacementMapEffect
[all...]
/external/skia/src/gpu/
H A DGrAADistanceFieldPathRenderer.h58 SkScalar fScale; member in struct:GrAADistanceFieldPathRenderer::PathData
H A DGrAADistanceFieldPathRenderer.cpp428 pathData->fScale = scale;
469 SkScalar invScale = 1.0f / pathData->fScale;
/external/skia/tests/
H A DPathOpsSkpClipTest.cpp175 fScale = 1;
182 fScale = 1;
200 if (fScale != 1) {
201 outStr.appendf(" scale=%d", fScale);
221 int fScale; member in struct:TestResult
481 fScale = 1;
482 while (width / fScale > 32767 || height / fScale > 32767) {
483 ++fScale;
486 int dimX = SkScalarCeilToInt(width / fScale);
[all...]
/external/skia/samplecode/
H A DSampleFilterQuality.cpp132 AnimValue fScale, fAngle; member in class:FilterQualityView
142 fScale.set(1, SK_Scalar1 / 8, 1);
169 case '3': fScale.inc(-SCALE_DELTA); this->inval(NULL); return true;
170 case '4': fScale.inc( SCALE_DELTA); this->inval(NULL); return true;
189 canvas->scale(fScale, fScale);
268 str.appendScalar(fScale);
H A DSampleVertices.cpp68 fScale = SK_Scalar1;
88 SkScalar fScale; member in class:VerticesView
/external/skia/src/effects/gradients/
H A DSkGradientShader.cpp140 // recs->fScale = 0; // unused;
169 recs->fScale = (1 << 24) / diff;
171 recs->fScale = 0; // ignore this segment
185 recs->fScale = scale;
190 recs->fScale = scale;
260 recsTemp[i].fScale = recSrc[offset].fScale;
H A DSkGradientShaderPriv.h234 uint32_t fScale; // (1 << 24) / range member in struct:SkGradientShaderBase::Rec
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp217 SkVector fScale; member in class:SkScalerContext_FreeType
813 fRec.computeMatrices(SkScalerContextRec::kFull_PreMatrixScale, &fScale, &fMatrix22Scalar);
817 fScaleX = SkScalarToFixed(fScale.fX);
818 fScaleY = SkScalarToFixed(fScale.fY);
1286 SkScalar scaleX = fScale.x();
1287 SkScalar scaleY = fScale.y();
/external/icu/icu4c/source/i18n/
H A Ddecimfmt.cpp401 fScale = 0;
1126 if (fMultiplier == NULL && fScale == 0 && fRoundingIncrement == 0 && areSignificantDigitsUsed() == FALSE &&
1319 } else if(fScale!=0) {
1320 debug("No format fastpath: fScale!=0");
1660 if (fScale != 0) {
1663 if (fScale > 0) {
1664 for (int32_t i = fScale ; i > 0 ; i--) {
1671 for (int32_t i = fScale ; i < 0 ; i++) {
2312 if (fScale != 0) {
2315 if (fScale >
[all...]
/external/pdfium/fpdfsdk/include/pdfwindow/
H A DPWL_Utils.h114 static CPDF_Rect ScaleRect(const CPDF_Rect& rcRect,FX_FLOAT fScale);
/external/icu/icu4c/source/i18n/unicode/
H A Ddecimfmt.h2264 int32_t fScale; member in class:DecimalFormat

Completed in 933 milliseconds

12