Home
last modified time | relevance | path

Searched refs:srcView (Results 1 – 24 of 24) sorted by relevance

/external/skia/src/core/
DSkGpuBlurUtils.cpp94 GrSurfaceProxyView srcView, in convolve_gaussian_1d() argument
109 auto proxy = srcView.proxy(); in convolve_gaussian_1d()
114 std::move(srcView), srcAlphaType, direction, radius, sigma, domainMode, realBounds)); in convolve_gaussian_1d()
123 GrSurfaceProxyView srcView, in convolve_gaussian_2d() argument
136 GrMipMapped::kNo, srcView.proxy()->isProtected(), srcView.origin()); in convolve_gaussian_2d()
145 auto conv = GrMatrixConvolutionEffect::MakeGaussian(std::move(srcView), srcBounds, size, in convolve_gaussian_2d()
161 GrSurfaceProxyView srcView, in convolve_gaussian() argument
177 srcView.proxy()->isProtected(), srcView.origin()); in convolve_gaussian()
186 contentRect->contains(SkIRect::MakeSize(srcView.proxy()->backingStoreDimensions()))) { in convolve_gaussian()
188 convolve_gaussian_1d(dstRenderTargetContext.get(), std::move(srcView), rtcToSrcOffset, in convolve_gaussian()
[all …]
DSkGpuBlurUtils.h45 GrSurfaceProxyView srcView,
DSkBlurMF.cpp64 GrSurfaceProxyView srcView,
870 GrSurfaceProxyView srcView, in filterMaskGPU() argument
884 auto srcBounds = SkIRect::MakeSize(srcView.proxy()->dimensions()); in filterMaskGPU()
886 srcView, in filterMaskGPU()
902 paint.addCoverageFragmentProcessor(GrTextureEffect::Make(std::move(srcView), srcAlphaType)); in filterMaskGPU()
DSkMaskFilterBase.h131 GrSurfaceProxyView srcView,
/external/skia/src/gpu/
DGrCopyRenderTask.cpp14 sk_sp<GrRenderTask> GrCopyRenderTask::Make(GrSurfaceProxyView srcView, in Make() argument
20 SkASSERT(srcView.proxy()); in Make()
23 GrSurfaceProxy* srcProxy = srcView.proxy(); in Make()
35 SkASSERT(dstView.origin() == srcView.origin()); in Make()
36 if (srcView.origin() == kBottomLeft_GrSurfaceOrigin) { in Make()
44 std::move(srcView), clippedSrcRect, std::move(dstView), clippedDstPoint)); in Make()
48 GrCopyRenderTask::GrCopyRenderTask(GrSurfaceProxyView srcView, in GrCopyRenderTask() argument
53 , fSrcView(std::move(srcView)) in GrCopyRenderTask()
DGrCopyRenderTask.h15 static sk_sp<GrRenderTask> Make(GrSurfaceProxyView srcView,
22 GrCopyRenderTask(GrSurfaceProxyView srcView,
DGrRenderTargetContext.cpp1939 GrSurfaceProxyView srcView; in asyncRescaleAndReadPixelsYUV420() local
1953 srcView = tempRTC->readSurfaceView(); in asyncRescaleAndReadPixelsYUV420()
1955 srcView = this->readSurfaceView(); in asyncRescaleAndReadPixelsYUV420()
1956 if (!srcView.asTextureProxy()) { in asyncRescaleAndReadPixelsYUV420()
1957 srcView = GrSurfaceProxy::Copy(fContext, fReadView.proxy(), this->origin(), in asyncRescaleAndReadPixelsYUV420()
1960 if (!srcView.asTextureProxy()) { in asyncRescaleAndReadPixelsYUV420()
1980 tempRTC->drawTexture(GrNoClip(), std::move(srcView), this->colorInfo().alphaType(), in asyncRescaleAndReadPixelsYUV420()
1985 srcView = tempRTC->readSurfaceView(); in asyncRescaleAndReadPixelsYUV420()
1986 SkASSERT(srcView.asTextureProxy()); in asyncRescaleAndReadPixelsYUV420()
2026 GrTextureEffect::Make(srcView, this->colorInfo().alphaType(), texMatrix)); in asyncRescaleAndReadPixelsYUV420()
[all …]
DGrDrawingManager.cpp817 bool GrDrawingManager::newCopyRenderTask(GrSurfaceProxyView srcView, in newCopyRenderTask() argument
827 GrSurfaceProxy* srcProxy = srcView.proxy(); in newCopyRenderTask()
830 fDAG.add(GrCopyRenderTask::Make(std::move(srcView), srcRect, std::move(dstView), in newCopyRenderTask()
DGrDrawingManager.h73 bool newCopyRenderTask(GrSurfaceProxyView srcView, const SkIRect& srcRect,
/external/emma/core/java12/com/vladium/emma/report/
DReportDataModel.java46 final boolean srcView = viewType == IReportDataView.HIER_SRC_VIEW; in getView()
48 if (srcView && ! m_mdata.hasSrcFileData ()) in getView()
71 if (srcView) in getView()
101 … if ($assert.ENABLED) $assert.ASSERT (! srcView || srcfileItem != null, "null srcfileItem"); in getView()
103 …final ClassItem classItem = srcView ? new ClassItem (srcfileItem, cls, coverage) : new ClassItem (… in getView()
120 if (srcView) in getView()
/external/skia/src/gpu/effects/
DGrMatrixConvolutionEffect.h19 static std::unique_ptr<GrFragmentProcessor> Make(GrSurfaceProxyView srcView, in Make() argument
29 new GrMatrixConvolutionEffect(std::move(srcView), srcBounds, kernelSize, kernel, in Make()
33 static std::unique_ptr<GrFragmentProcessor> MakeGaussian(GrSurfaceProxyView srcView,
60 GrMatrixConvolutionEffect(GrSurfaceProxyView srcView,
DGrMatrixConvolutionEffect.cpp146 GrMatrixConvolutionEffect::GrMatrixConvolutionEffect(GrSurfaceProxyView srcView, in GrMatrixConvolutionEffect() argument
158 , fCoordTransform(srcView.proxy(), srcView.origin()) in GrMatrixConvolutionEffect()
159 , fDomain(srcView.proxy(), GrTextureDomain::MakeTexelDomain(srcBounds, tileMode), in GrMatrixConvolutionEffect()
161 , fTextureSampler(std::move(srcView)) in GrMatrixConvolutionEffect()
297 GrSurfaceProxyView srcView, in MakeGaussian() argument
310 if (tileMode == GrTextureDomain::kClamp_Mode && !srcView.proxy()->isFullyLazy() && in MakeGaussian()
311 srcBounds.contains(SkIRect::MakeSize(srcView.proxy()->backingStoreDimensions()))) { in MakeGaussian()
319 new GrMatrixConvolutionEffect(std::move(srcView), srcBounds, kernelSize, kernel, in MakeGaussian()
DGrRRectBlurEffect.fp72 GrSurfaceProxyView srcView = rtc->readSurfaceView();
73 if (!srcView) {
76 SkASSERT(srcView.asTextureProxy());
78 std::move(srcView),
DGrMagnifierEffect.fp50 if (srcView.origin() != kTopLeft_GrSurfaceOrigin) {
60 if (srcView.origin() != kTopLeft_GrSurfaceOrigin) {
/external/skia/tests/
DImageFilterCacheTest.cpp220 GrSurfaceProxyView srcView = create_proxy_view(context); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
221 if (!srcView.proxy()) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
225 if (!srcView.proxy()->instantiate(context->priv().resourceProvider())) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
228 GrTexture* tex = srcView.proxy()->peekTexture(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
261 GrSurfaceProxyView srcView = create_proxy_view(context); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
262 if (!srcView.proxy()) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
271 srcView, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
279 std::move(srcView), in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skia/src/gpu/effects/generated/
DGrRRectBlurEffect.h74 GrSurfaceProxyView srcView = rtc->readSurfaceView(); in find_or_create_rrect_blur_mask() local
75 if (!srcView) { in find_or_create_rrect_blur_mask()
78 SkASSERT(srcView.asTextureProxy()); in find_or_create_rrect_blur_mask()
80 std::move(srcView), in find_or_create_rrect_blur_mask()
DGrMagnifierEffect.cpp88 const GrSurfaceProxyView& srcView = _outer.textureSampler(0).view(); in onSetData() local
89 GrTexture& src = *srcView.proxy()->peekTexture(); in onSetData()
113 if (srcView.origin() != kTopLeft_GrSurfaceOrigin) { in onSetData()
123 if (srcView.origin() != kTopLeft_GrSurfaceOrigin) { in onSetData()
/external/skia/src/image/
DSkSurface_Gpu.cpp104 GrSurfaceProxyView srcView; in onNewImageSnapshot() local
106 srcView = GrSurfaceProxy::Copy(ctx, rtc->asSurfaceProxy(), rtc->origin(), in onNewImageSnapshot()
113 srcView = GrSurfaceProxy::Copy(ctx, rtc->asSurfaceProxy(), rtc->origin(), in onNewImageSnapshot()
117 srcView = rtc->readSurfaceView(); in onNewImageSnapshot()
122 if (srcView.asTextureProxy()) { in onNewImageSnapshot()
125 SkASSERT(srcView.proxy()->priv().isExact()); in onNewImageSnapshot()
126 image = sk_make_sp<SkImage_Gpu>(sk_ref_sp(ctx), kNeedNewImageUniqueID, std::move(srcView), in onNewImageSnapshot()
/external/skia/src/effects/imagefilters/
DSkMorphologyImageFilter.cpp554 GrSurfaceProxyView srcView = input->view(context); in apply_morphology() local
556 SkASSERT(srcView.asTextureProxy()); in apply_morphology()
560 GrSurfaceProxy* proxy = srcView.proxy(); in apply_morphology()
579 apply_morphology_pass(dstRTContext.get(), clip, std::move(srcView), srcAlphaType, in apply_morphology()
587 srcView = dstRTContext->readSurfaceView(); in apply_morphology()
594 GrMipMapped::kNo, srcView.proxy()->isProtected(), kBottomLeft_GrSurfaceOrigin); in apply_morphology()
599 apply_morphology_pass(dstRTContext.get(), clip, std::move(srcView), srcAlphaType, in apply_morphology()
602 srcView = dstRTContext->readSurfaceView(); in apply_morphology()
608 std::move(srcView), colorType, in apply_morphology()
DSkLightingImageFilter.cpp446 GrSurfaceProxyView srcView,
463 GrSurfaceProxyView srcView, in drawRect() argument
472 auto fp = this->makeFragmentProcessor(std::move(srcView), matrix, srcBounds, boundaryMode); in drawRect()
/external/angle/src/libANGLE/renderer/vulkan/
DUtilsVk.h199 const vk::ImageView *srcView,
217 const vk::ImageView *srcView,
DUtilsVk.cpp1279 const vk::ImageView *srcView, in colorBlitResolve() argument
1282 return blitResolveImpl(contextVk, framebuffer, src, srcView, nullptr, nullptr, params); in colorBlitResolve()
1667 const vk::ImageView *srcView, in copyImage() argument
1748 imageInfo.imageView = srcView->getHandle(); in copyImage()
DTextureVk.h343 const vk::ImageView *srcView);
DTextureVk.cpp658 const vk::ImageView *srcView) in copySubImageImplWithDraw() argument
694 ANGLE_TRY(utilsVk.copyImage(contextVk, mImage, destView, srcImage, srcView, params)); in copySubImageImplWithDraw()
725 srcView, params)); in copySubImageImplWithDraw()