/aosp_15_r20/external/skia/src/gpu/graphite/ |
H A D | Image_Graphite.cpp | 57 const TextureProxyView& srcView, in Copy() argument 65 if (!srcView) { in Copy() 69 SkASSERT(srcView.proxy()->isFullyLazy() || in Copy() 70 SkIRect::MakeSize(srcView.proxy()->dimensions()).contains(subset)); in Copy() 72 if (!recorder->priv().caps()->supportsReadPixels(srcView.proxy()->textureInfo())) { in Copy() 73 if (!recorder->priv().caps()->isTexturable(srcView.proxy()->textureInfo())) { in Copy() 78 sk_sp<Image> srcImage(new Image(srcView, srcColorInfo)); in Copy() 85 recorder->priv().caps()->getTextureInfoForSampledCopy(srcView.proxy()->textureInfo(), in Copy() 99 auto copyTask = CopyTextureToTextureTask::Make(srcView.refProxy(), subset, dst, {0, 0}); in Copy() 113 return sk_sp<Image>(new Image({std::move(dst), srcView.swizzle()}, srcColorInfo)); in Copy()
|
H A D | TextureUtils.cpp | 406 const TextureProxyView srcView = AsView(srcImage); in RescaleImage() local 407 if (srcView && !recorder->priv().caps()->isTexturable(srcView.proxy()->textureInfo())) { in RescaleImage()
|
H A D | Image_Graphite.h | 37 const TextureProxyView& srcView,
|
H A D | Device.cpp | 556 TextureProxyView srcView = this->readSurfaceView(); in makeImageCopy() local 557 if (!srcView) { in makeImageCopy() 562 srcView = {sk_ref_sp(this->target()), readSwizzle}; in makeImageCopy() 571 return Image::Copy(fRecorder, srcView, colorInfo, subset, budgeted, mipmapped, backingFit, in makeImageCopy()
|
/aosp_15_r20/external/skia/src/gpu/ganesh/ |
H A D | GrBlurUtils.cpp | 774 GrSurfaceProxyView srcView = sdc->readSurfaceView(); in fillin_view_on_gpu() local 775 SkASSERT(srcView.asTextureProxy()); in fillin_view_on_gpu() 777 std::move(srcView), in fillin_view_on_gpu() 1230 GrSurfaceProxyView srcView, in filter_mask() argument 1247 auto srcBounds = SkIRect::MakeSize(srcView.proxy()->dimensions()); in filter_mask() 1249 srcView, in filter_mask() 1265 paint.setCoverageFragmentProcessor(GrTextureEffect::Make(std::move(srcView), srcAlphaType)); in filter_mask() 1589 GrSurfaceProxyView srcView, in make_texture_effect() argument 1598 return GrTextureEffect::MakeSubset(std::move(srcView), in make_texture_effect() 1611 return GrTextureEffect::MakeSubset(std::move(srcView), in make_texture_effect() [all …]
|
H A D | SurfaceContext.cpp | 772 GrSurfaceProxyView srcView = this->readSurfaceView(); in asyncRescaleAndReadPixelsYUV420() local 791 srcView = tempFC->readSurfaceView(); in asyncRescaleAndReadPixelsYUV420() 792 } else if (!srcView.asTextureProxy()) { in asyncRescaleAndReadPixelsYUV420() 793 srcView = GrSurfaceProxyView::Copy( in asyncRescaleAndReadPixelsYUV420() 795 std::move(srcView), in asyncRescaleAndReadPixelsYUV420() 801 if (!srcView) { in asyncRescaleAndReadPixelsYUV420() 806 SkASSERT(srcView.asTextureProxy()); in asyncRescaleAndReadPixelsYUV420() 858 auto yFP = GrTextureEffect::Make(srcView, this->colorInfo().alphaType(), texMatrix); in asyncRescaleAndReadPixelsYUV420() 875 auto aFP = GrTextureEffect::Make(srcView, this->colorInfo().alphaType(), texMatrix); in asyncRescaleAndReadPixelsYUV420() 898 auto uFP = GrTextureEffect::Make(srcView, in asyncRescaleAndReadPixelsYUV420() [all …]
|
H A D | GrBlurUtils.h | 106 GrSurfaceProxyView srcView,
|
/aosp_15_r20/external/skia/src/gpu/ganesh/surface/ |
H A D | SkSurface_Ganesh.cpp | 155 GrSurfaceProxyView srcView = fDevice->readSurfaceView(); in onNewImageSnapshot() local 159 if (subset || !srcView.asTextureProxy() || rtp->refsWrappedObjects()) { in onNewImageSnapshot() 165 if (!subset && srcView.asTextureProxy()) { in onNewImageSnapshot() 167 sk_ref_sp(rContext), srcView, fDevice->imageInfo().colorInfo()); in onNewImageSnapshot() 169 auto rect = subset ? *subset : SkIRect::MakeSize(srcView.dimensions()); in onNewImageSnapshot() 170 skgpu::Mipmapped mipmapped = srcView.mipmapped(); in onNewImageSnapshot() 171 srcView = GrSurfaceProxyView::Copy(rContext, in onNewImageSnapshot() 172 std::move(srcView), in onNewImageSnapshot() 181 if (!srcView.asTextureProxy()) { in onNewImageSnapshot() 186 SkASSERT(srcView.proxy()->priv().isExact()); in onNewImageSnapshot() [all …]
|
/aosp_15_r20/external/emma/core/java12/com/vladium/emma/report/ |
H A D | ReportDataModel.java | 46 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()
|
/aosp_15_r20/external/skia/tests/ |
H A D | ImageFilterCacheTest.cpp | 253 GrSurfaceProxyView srcView = create_proxy_view(dContext); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() local 254 if (!srcView.proxy()) { in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 258 if (!srcView.proxy()->instantiate(dContext->priv().resourceProvider())) { in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 261 GrTexture* tex = srcView.proxy()->peekTexture(); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 302 GrSurfaceProxyView srcView = create_proxy_view(dContext); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() local 303 if (!srcView.proxy()) { in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 313 srcView, in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 323 std::move(srcView), in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | CopySurfaceTest.cpp | 93 auto srcView = sk_gpu_test::MakeTextureProxyViewFromData( in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() local 101 if (!srcView || !dstView) { in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 111 if (!srcView || !dstView) { in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 123 result = dstContext->testCopy(srcView.refProxy(), in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS() 129 std::move(srcView), srcRect, dstPoint); in DEF_GANESH_TEST_FOR_RENDERING_CONTEXTS()
|
H A D | RectangleTextureTest.cpp | 144 auto srcView = sk_gpu_test::MakeTextureProxyViewFromData(dContext, in test_copy_to_surface() local 150 SkAssertResult(dstContext->testCopy(srcView.refProxy())); in test_copy_to_surface()
|
/aosp_15_r20/external/angle/src/libANGLE/renderer/vulkan/ |
H A D | UtilsVk.h | 282 const vk::ImageView *srcView, 304 const vk::ImageView *srcView,
|
H A D | UtilsVk.cpp | 2863 const vk::ImageView *srcView, in colorBlitResolve() argument 2875 return blitResolveImpl(contextVk, framebuffer, src, srcView, nullptr, nullptr, params); in colorBlitResolve() 3371 const vk::ImageView *srcView, in copyImage() argument 3521 imageInfo.imageView = srcView->getHandle(); in copyImage() 3881 vk::DeviceScoped<vk::ImageView> srcView(contextVk->getDevice()); in copyImageToBuffer() local 3883 contextVk, textureType, src->getAspectFlags(), swizzle, &srcView.get(), params.srcMip, 1, in copyImageToBuffer() 3902 imageInfo.imageView = srcView.get().getHandle(); in copyImageToBuffer() 3938 vk::ImageView srcViewObject = srcView.release(); in copyImageToBuffer()
|
H A D | TextureVk.cpp | 1724 const vk::ImageView *srcView, in copySubImageImplWithDraw() argument 1822 ANGLE_TRY(utilsVk.copyImage(contextVk, mImage, destView, srcImage, srcView, params)); in copySubImageImplWithDraw() 1855 srcView, params)); in copySubImageImplWithDraw() 2580 const vk::ImageView *srcView = nullptr; in generateMipmapsWithCompute() local 2584 layer, &srcView)); in generateMipmapsWithCompute() 2615 ANGLE_TRY(contextVk->getUtils().generateMipmap(contextVk, mImage, srcView, mImage, in generateMipmapsWithCompute()
|
H A D | TextureVk.h | 534 const vk::ImageView *srcView,
|
H A D | vk_helpers.cpp | 11369 vk::ImageView srcView; in readPixelsImpl() local 11371 gl::SwizzleState(), &srcView, vk::LevelIndex(0), 1, 0, in readPixelsImpl() 11385 src, &srcView, params)); in readPixelsImpl() 11399 contextVk->addGarbage(&srcView); in readPixelsImpl()
|
/aosp_15_r20/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | FolderIcon.java | 311 final DragView srcView = d.dragView; in performCreateAnimation() local
|
/aosp_15_r20/frameworks/base/core/java/android/widget/ |
H A D | RemoteViews.java | 6118 for (RemoteViews srcView : src.mSizedRemoteViews) { 6119 mSizedRemoteViews.add(createInitializedFrom(srcView, hierarchyRoot));
|
/aosp_15_r20/prebuilts/devtools/tools/lib/ |
HD | emma_device.jar | META-INF/
META-INF/MANIFEST.MF
emma.class
emma.java
package emma ... |
HD | emma.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/vladium/
com/ ... |
/aosp_15_r20/external/emma/lib/ |
HD | emma.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/vladium/
com/ ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/repackaged-jarjar/javac-20/ |
D | framework.jar | android/widget/ScrollBarDrawable.uau
android/widget/ScrollBarDrawable.class
ScrollBarDrawable.java
package android ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/javac/ |
D | framework.jar20 | META-INF/
META-INF/MANIFEST.MF
android/
android/webkit/
android/ ... |
/aosp_15_r20/out/soong/.intermediates/packages/apps/Launcher3/Launcher3QuickStepLib/android_common/javac/ |
D | Launcher3QuickStepLib.jar | META-INF/
META-INF/MANIFEST.MF
androidx/
androidx/activity/
androidx/ ... |