Home
last modified time | relevance | path

Searched refs:fMask (Results 1 – 18 of 18) sorted by relevance

/external/skia/gm/
Dbitmapshader.cpp44 draw_mask(&fMask); in onOnceBeforeDraw()
71 canvas->drawBitmap(fMask, 0, 0, &paint); in onDraw()
72 canvas->drawBitmap(fMask, 30, 0, &paint); in onDraw()
84 canvas->drawBitmap(fMask, 0, 0, &paint); in onDraw()
85 canvas->drawBitmap(fMask, 30, 0, &paint); in onDraw()
89 paint.setShader(SkShader::MakeBitmapShader(fMask, SkShader::kRepeat_TileMode, in onDraw()
103 SkBitmap fMask; member in skiagm::BitmapShaderGM
/external/skia/src/core/
DSkScan_AntiPath.cpp398 fRealBlitter->blitMask(fMask, fClipRect); in ~MaskSuperBlitter()
427 SkMask fMask; member in MaskSuperBlitter
441 fMask.fImage = (uint8_t*)fStorage; in MaskSuperBlitter()
442 fMask.fBounds = ir; in MaskSuperBlitter()
443 fMask.fRowBytes = ir.width(); in MaskSuperBlitter()
444 fMask.fFormat = SkMask::kA8_Format; in MaskSuperBlitter()
454 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 1); in MaskSuperBlitter()
529 SkASSERT(iy >= fMask.fBounds.fTop && iy < fMask.fBounds.fBottom); in blitH()
530 iy -= fMask.fBounds.fTop; // make it relative to 0 in blitH()
542 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight); in blitH()
[all …]
DSkMaskCache.cpp14 SkMask fMask; member
43 fValue.fMask = mask; in RRectBlurRec()
85 *mask = result.fMask; in FindAndRef()
137 fValue.fMask = mask; in RectsBlurRec()
180 *mask = result.fMask; in FindAndRef()
DSkMaskFilter.cpp24 SkASSERT((const void*)fMask.fImage == fCache->data()); in ~NinePatch()
27 SkMask::FreeImage(fMask.fImage); in ~NinePatch()
221 patch.fMask.fImage = nullptr; in filterRRect()
225 SkASSERT(nullptr == patch.fMask.fImage); in filterRRect()
228 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, true, clip, blitter); in filterRRect()
245 SkASSERT(nullptr == patch.fMask.fImage); in filterPath()
249 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, 1 == rectCount, clip, in filterPath()
254 SkASSERT(nullptr == patch.fMask.fImage); in filterPath()
DSkScan_AAAPath.cpp140 fRealBlitter->blitMask(fMask, fClipRect); in ~MaskAdditiveBlitter()
184 fRow = fMask.fImage + (y - fMask.fBounds.fTop) * fMask.fRowBytes - fMask.fBounds.fLeft; in getRow()
195 SkMask fMask; member in MaskAdditiveBlitter
211 fMask.fImage = (uint8_t*)fStorage + 1; // There's 1 extra byte at either end of fStorage in MaskAdditiveBlitter()
212 fMask.fBounds = ir; in MaskAdditiveBlitter()
213 fMask.fRowBytes = ir.width(); in MaskAdditiveBlitter()
214 fMask.fFormat = SkMask::kA8_Format; in MaskAdditiveBlitter()
225 memset(fStorage, 0, fMask.fBounds.height() * fMask.fRowBytes + 2); in MaskAdditiveBlitter()
233 SkASSERT(x >= fMask.fBounds.fLeft -1); in blitAntiH()
238 SkASSERT(x >= fMask.fBounds.fLeft -1); in blitAntiH()
[all …]
DSkBlitter.cpp605 , fMask(nullptr) in Sk3DShaderContext()
619 void set3DMask(const SkMask* mask) override { fMask = mask; } in set3DMask()
626 if (fMask == nullptr) { in shadeSpan()
633 SkASSERT(fMask->fBounds.contains(x, y)); in shadeSpan()
634 SkASSERT(fMask->fBounds.contains(x + count - 1, y)); in shadeSpan()
636 size_t size = fMask->computeImageSize(); in shadeSpan()
637 const uint8_t* alpha = fMask->getAddr8(x, y); in shadeSpan()
687 const SkMask* fMask; member in Sk3DShader::Sk3DShaderContext
/external/skia/src/effects/
DGrAlphaThresholdFragmentProcessor.h49 , fMask(std::move(mask)) in GrAlphaThresholdFragmentProcessor()
55 fMask.proxy()) { in GrAlphaThresholdFragmentProcessor()
57 this->addTextureSampler(&fMask); in GrAlphaThresholdFragmentProcessor()
68 TextureSampler fMask; variable
DGrAlphaThresholdFragmentProcessor.cpp105 if (fMask != that.fMask) return false; in onIsEqual()
DSkBlurMaskFilter.cpp564 SkCachedData* cache = find_cached_rrect(&patch->fMask, sigma, fBlurStyle, in filterRRectToNine()
570 this->filterRRectMask(&patch->fMask, smallRR, matrix, &margin, in filterRRectToNine()
581 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) { in filterRRectToNine()
585 cache = add_cached_rrect(&patch->fMask, sigma, fBlurStyle, this->getQuality(), smallRR); in filterRRectToNine()
588 patch->fMask.fBounds.offsetTo(0, 0); in filterRRectToNine()
698 SkCachedData* cache = find_cached_rects(&patch->fMask, sigma, fBlurStyle, in filterRectsToNine()
708 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) { in filterRectsToNine()
712 if (!this->filterRectMask(&patch->fMask, smallR[0], matrix, &margin, in filterRectsToNine()
717 … cache = add_cached_rects(&patch->fMask, sigma, fBlurStyle, this->getQuality(), smallR, count); in filterRectsToNine()
719 patch->fMask.fBounds.offsetTo(0, 0); in filterRectsToNine()
/external/icu/icu4c/source/samples/layout/
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()
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()
/external/skia/src/jumper/
DSkJumper.h112 uint32_t fMask[SkJumper_kMaxStride]; member
DSkJumper_stages.cpp1324 unaligned_store(&c->fMask, mask); in STAGE()
/external/skia/include/core/
DSkMaskFilter.h193 SkMask fMask; // fBounds must have [0,0] in its top-left variable
/external/lzma/CPP/7zip/Bundles/SFXSetup/
DSfxSetup.cpp266 execInfo.fMask = SEE_MASK_NOCLOSEPROCESS in WinMain()
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/Sources/
DBrowserDialog.cpp167 info.fMask = 0; in OnBrowserListDoubleClick()
/external/skia/src/shaders/gradients/
DSkTwoPointConicalGradient.cpp248 postPipeline->append(SkRasterPipeline::apply_vector_mask, &ctx->fMask); in adjustMatrixAndAppendStages()
/external/lzma/C/Util/SfxSetup/
DSfxSetup.c555 ei.fMask = SEE_MASK_NOCLOSEPROCESS in main()