/external/skia/src/gpu/ganesh/ops/ |
D | SmallPathAtlasMgr.cpp | 41 SmallPathShapeData* shapeData; in reset() local 42 while ((shapeData = iter.get())) { in reset() 44 delete shapeData; in reset() 84 void SmallPathAtlasMgr::deleteCacheEntry(SmallPathShapeData* shapeData) { in deleteCacheEntry() argument 85 fShapeCache.remove(shapeData->fKey); in deleteCacheEntry() 86 fShapeList.remove(shapeData); in deleteCacheEntry() 87 delete shapeData; in deleteCacheEntry() 91 auto shapeData = fShapeCache.find(key); in findOrCreate() local 92 if (!shapeData) { in findOrCreate() 94 shapeData = new SmallPathShapeData(key); in findOrCreate() [all …]
|
D | SmallPathRenderer.cpp | 276 skgpu::ganesh::SmallPathShapeData* shapeData; in onPrepareDraws() local 327 shapeData = atlasMgr->findOrCreate(args.fShape, ceilDesiredDimension); in onPrepareDraws() 328 if (!shapeData->fAtlasLocator.plotLocator().isValid()) { in onPrepareDraws() 334 shapeData, in onPrepareDraws() 338 atlasMgr->deleteCacheEntry(shapeData); in onPrepareDraws() 344 shapeData = atlasMgr->findOrCreate(args.fShape, args.fViewMatrix); in onPrepareDraws() 345 if (!shapeData->fAtlasLocator.plotLocator().isValid()) { in onPrepareDraws() 349 shapeData, in onPrepareDraws() 352 atlasMgr->deleteCacheEntry(shapeData); in onPrepareDraws() 359 atlasMgr->setUseToken(shapeData, uploadTarget->tokenTracker()->nextDrawToken()); in onPrepareDraws() [all …]
|
/external/skia/src/gpu/graphite/geom/ |
D | AnalyticBlurMask.cpp | 167 const Rect shapeData = Rect(devRect.left() + threeSigma, in MakeRect() local 176 const bool isFast = shapeData.left() <= shapeData.right() && shapeData.top() <= shapeData.bot(); in MakeRect() 189 shapeData, in MakeRect() 285 const Rect shapeData = Rect(devRect.centerX(), in MakeCircle() local 302 shapeData, in MakeCircle() 390 const Rect shapeData = devRRect.rect().makeOutset(blurRadius, blurRadius); in MakeRRect() local 402 shapeData, in MakeRRect()
|
D | AnalyticBlurMask.h | 56 const Rect& shapeData() const { return fShapeData; } in shapeData() function 65 const Rect& shapeData, in AnalyticBlurMask() argument 70 , fShapeData(shapeData) in AnalyticBlurMask()
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/ |
D | MiscUtils.java | 22 public static void getPathFromData(ShapeData shapeData, Path outPath) { in getPathFromData() argument 24 PointF initialPoint = shapeData.getInitialPoint(); in getPathFromData() 27 for (int i = 0; i < shapeData.getCurves().size(); i++) { in getPathFromData() 28 CubicCurveData curveData = shapeData.getCurves().get(i); in getPathFromData() 46 if (shapeData.isClosed()) { in getPathFromData()
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/animation/content/ |
D | RoundedCornersContent.java | 28 @Nullable private ShapeData shapeData; field in RoundedCornersContent 196 if (shapeData == null || shapeData.getCurves().size() != vertices) { in getShapeData() 201 shapeData = new ShapeData(new PointF(0f, 0f), false, newCurves); in getShapeData() 203 shapeData.setClosed(isClosed); in getShapeData() 204 return shapeData; in getShapeData()
|
D | ShapeModifierContent.java | 6 ShapeData modifyShape(ShapeData shapeData); in modifyShape() argument
|
/external/armnn/include/armnnTestUtils/ |
D | MemCopyTestImpl.hpp | 23 const std::array<unsigned int, 4> shapeData = { { 1u, 1u, 6u, 5u } }; in MemCopyTest() local 24 const armnn::TensorShape tensorShape(4, shapeData.data()); in MemCopyTest()
|
/external/skia/src/gpu/graphite/render/ |
D | AnalyticBlurRenderStep.cpp | 94 gatherer->write(blur.shapeData().asSkRect()); in writeUniformsAndTextures()
|
/external/skia/src/sksl/generated/ |
D | sksl_graphite_frag.unoptimized.sksl | 468 "(float2 coords,float4 shapeData,half2 blurData,int shapeType,sampler2D s){switch" 469 "(shapeType){case 0:{return $rect_blur_coverage_fn(coords,shapeData,blurData" 470 ".x,blurData.y,s);}case 2:{return $circle_blur_coverage_fn(coords,shapeData," 471 "s);}case 1:{return $rrect_blur_coverage_fn(coords,shapeData,blurData.x,s);}"
|
/external/pytorch/aten/src/ATen/native/mps/operations/ |
D | View.mm | 591 NSData* shapeData = [NSData dataWithBytes:sizeArray.data() length:shape_size * sizeof(int32_t)]; 592 MPSGraphTensor* shapeTensor = [mpsGraph constantWithData:shapeData
|
/external/skia/src/sksl/ |
D | sksl_graphite_frag.sksl | 1791 float4 shapeData, 1797 return $rect_blur_coverage_fn(coords, shapeData, blurData.x, blurData.y, s); 1800 return $circle_blur_coverage_fn(coords, shapeData, s); 1803 return $rrect_blur_coverage_fn(coords, shapeData, blurData.x, s);
|