Home
last modified time | relevance | path

Searched refs:fMask (Results 1 - 19 of 19) sorted by relevance

/third_party/skia/gm/
H A Dbitmapshader.cpp55 fMask = draw_mask();
81 canvas->drawImage(fMask, 0, 0, SkSamplingOptions(), &paint);
83 canvas->drawImage(fMask, 30, 0, SkSamplingOptions(), &paint);
95 canvas->drawImage(fMask, 0, 0, SkSamplingOptions(), &paint);
96 canvas->drawImage(fMask, 30, 0, SkSamplingOptions(), &paint);
100 paint.setShader(fMask->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat,
113 sk_sp<SkImage> fImage, fMask; member in skiagm::BitmapShaderGM
/third_party/skia/src/core/
H A DSkScan_AntiPath.cpp404 fRealBlitter->blitMask(fMask, fClipRect);
433 SkMask fMask;
447 fMask.fImage = (uint8_t*)fStorage;
448 fMask.fBounds = ir;
449 fMask.fRowBytes = ir.width();
450 fMask.fFormat = SkMask::kA8_Format;
460 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 1);
535 SkASSERT(iy >= fMask.fBounds.fTop && iy < fMask
[all...]
H A DSkMaskCache.cpp14 SkMask fMask; member
41 fValue.fMask = mask; in RRectBlurRec()
83 *mask = result.fMask; in FindAndRef()
132 fValue.fMask = mask; in RectsBlurRec()
175 *mask = result.fMask; in FindAndRef()
H A DSkMaskFilter.cpp30 SkASSERT((const void*)fMask.fImage == fCache->data()); in ~NinePatch()
33 SkMask::FreeImage(fMask.fImage); in ~NinePatch()
222 patch.fMask.fImage = nullptr; in filterRRect()
226 SkASSERT(nullptr == patch.fMask.fImage); in filterRRect()
229 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, true, clip, blitter); in filterRRect()
246 SkASSERT(nullptr == patch.fMask.fImage); in filterPath()
250 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, 1 == rectCount, clip, in filterPath()
255 SkASSERT(nullptr == patch.fMask.fImage); in filterPath()
H A DSkScan_AAAPath.cpp146 ~MaskAdditiveBlitter() override { fRealBlitter->blitMask(fMask, fClipRect); }
189 fRow = fMask.fImage + (y - fMask.fBounds.fTop) * fMask.fRowBytes - fMask.fBounds.fLeft; in getRow()
200 SkMask fMask; member in MaskAdditiveBlitter
218 fMask.fImage = (uint8_t*)fStorage + 1; // There's 1 extra byte at either end of fStorage in MaskAdditiveBlitter()
219 fMask.fBounds = ir; in MaskAdditiveBlitter()
220 fMask.fRowBytes = ir.width(); in MaskAdditiveBlitter()
221 fMask in MaskAdditiveBlitter()
[all...]
H A DSkBlurMF.cpp397 SkCachedData* cache = find_cached_rrect(&patch->fMask, sigma, fBlurStyle, smallRR); in filterRRectToNine()
402 this->filterRRectMask(&patch->fMask, smallRR, matrix, &margin, in filterRRectToNine()
413 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) { in filterRRectToNine()
417 cache = add_cached_rrect(&patch->fMask, sigma, fBlurStyle, smallRR); in filterRRectToNine()
420 patch->fMask.fBounds.offsetTo(0, 0); in filterRRectToNine()
531 SkCachedData* cache = find_cached_rects(&patch->fMask, sigma, fBlurStyle, smallR, count); in filterRectsToNine()
540 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) { in filterRectsToNine()
544 if (!this->filterRectMask(&patch->fMask, smallR[0], matrix, &margin, in filterRectsToNine()
549 cache = add_cached_rects(&patch->fMask, sigma, fBlurStyle, smallR, count); in filterRectsToNine()
551 patch->fMask in filterRectsToNine()
[all...]
H A DSkMaskFilterBase.h196 SkMask fMask; // fBounds must have [0,0] in its top-left member in SkMaskFilterBase::NinePatch
197 SkIRect fOuterRect; // width/height must be >= fMask.fBounds'
H A DSkRasterPipeline.h180 uint32_t fMask[SkRasterPipeline_kMaxStride]; member
/third_party/icu/icu4c/source/samples/layout/
H A Dlayout.cpp68 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL; in InitParagraph()
180 si.fMask = SIF_ALL; in WndProc()
219 si.fMask = SIF_POS; in WndProc()
243 si.fMask = SIF_ALL; in WndProc()
H A Dclayout.c70 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL; in InitParagraph()
183 si.fMask = SIF_ALL; in WndProc()
222 si.fMask = SIF_POS; in WndProc()
246 si.fMask = SIF_ALL; in WndProc()
/third_party/skia/third_party/externals/icu/source/samples/layout/
H A Dclayout.c69 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL; in InitParagraph()
182 si.fMask = SIF_ALL; in WndProc()
221 si.fMask = SIF_POS; in WndProc()
245 si.fMask = SIF_ALL; in WndProc()
H A Dlayout.cpp68 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL; in InitParagraph()
180 si.fMask = SIF_ALL; in WndProc()
219 si.fMask = SIF_POS; in WndProc()
243 si.fMask = SIF_ALL; in WndProc()
/third_party/skia/modules/svg/include/
H A DSkSVGAttribute.h104 SkSVGProperty<SkSVGFuncIRI , false> fMask; member
/third_party/skia/src/shaders/gradients/
H A DSkTwoPointConicalGradient.cpp177 postPipeline->append(SkRasterPipeline::apply_vector_mask, &ctx->fMask); in appendGradientStages()
208 postPipeline->append(SkRasterPipeline::apply_vector_mask, &ctx->fMask); in appendGradientStages()
/third_party/skia/modules/svg/src/
H A DSkSVGRenderContext.cpp283 if (attrs.fMask.isValue()) { in applyPresentationAttributes()
284 this->applyMask(*attrs.fMask); in applyPresentationAttributes()
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/
H A DSfxSetup.cpp269 execInfo.fMask = SEE_MASK_NOCLOSEPROCESS in WinMain()
/third_party/gn/src/gn/
H A Dcommand_args.cc289 info.fMask = SEE_MASK_NOCLOSEPROCESS | SEE_MASK_CLASSNAME; in RunEditor()
/third_party/lzma/C/Util/SfxSetup/
H A DSfxSetup.c585 ei.fMask = SEE_MASK_NOCLOSEPROCESS in main()
/third_party/skia/src/opts/
H A DSkRasterPipeline_opts.h2561 sk_unaligned_store(&c->fMask, cond_to_mask(!is_degenerate));
2568 sk_unaligned_store(&c->fMask, cond_to_mask(!is_degenerate));

Completed in 18 milliseconds