Searched refs:recycled (Results 1 - 7 of 7) sorted by relevance

/external/skia/src/gpu/
H A DGrLayerHoister.h33 // UnlockLayers should be called once to allow the texture resources to be recycled
45 @param recycled Out parameter storing layers that are atlased but do not need rendering
53 SkTDArray<GrHoistedLayer>* recycled,
64 @param recycled Out parameter storing layers that need hoisting but not rendering
72 SkTDArray<GrHoistedLayer>* recycled,
H A DGrLayerHoister.cpp31 SkTDArray<GrHoistedLayer>* recycled,
75 hl = recycled->append();
124 SkTDArray<GrHoistedLayer>* recycled,
176 info, srcIR, dstIR, atlased, recycled, true, 0);
186 SkTDArray<GrHoistedLayer>* recycled,
226 needRendering, recycled, false, numSamples);
24 prepare_for_hoisting(GrLayerCache* layerCache, const SkPicture* topLevelPicture, const SkMatrix& initialMat, const SkLayerInfo::BlockInfo& info, const SkIRect& srcIR, const SkIRect& dstIR, SkTDArray<GrHoistedLayer>* needRendering, SkTDArray<GrHoistedLayer>* recycled, bool attemptToAtlas, int numSamples) argument
119 FindLayersToAtlas(GrContext* context, const SkPicture* topLevelPicture, const SkMatrix& initialMat, const SkRect& query, SkTDArray<GrHoistedLayer>* atlased, SkTDArray<GrHoistedLayer>* recycled, int numSamples) argument
181 FindLayersToHoist(GrContext* context, const SkPicture* topLevelPicture, const SkMatrix& initialMat, const SkRect& query, SkTDArray<GrHoistedLayer>* needRendering, SkTDArray<GrHoistedLayer>* recycled, int numSamples) argument
H A DSkGpuDevice.cpp2033 SkTDArray<GrHoistedLayer> needRendering, recycled; local
2040 &needRendering, &recycled,
2050 GrLayerHoister::UnlockLayers(fContext, recycled);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmap.java25 private boolean recycled = false; field in class:ShadowBitmap
72 recycled = true;
77 return recycled;
/external/skia/src/core/
H A DSkMultiPictureDraw.cpp150 SkTDArray<GrHoistedLayer> needRendering, recycled; local
174 // layers in the 'recycled' list since they have already been drawn.
176 clipBounds, &needRendering, &recycled,
186 GrLayerHoister::UnlockLayers(context, recycled);
189 recycled.rewind();
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DTransformationUtils.java31 * @param recycled A mutable Bitmap with dimensions width and height that we can load the cropped portion of toCrop
36 * @return The resized Bitmap (will be recycled if recycled is not null).
38 public static Bitmap centerCrop(Bitmap recycled, Bitmap toCrop, int width, int height) { argument
59 if (recycled != null) {
60 result = recycled;
H A DDownsampler.java86 * Load the image for the given InputStream. If a recycled Bitmap whose dimensions exactly match those of the image
95 * @param pool A pool of recycled bitmaps.
324 private static void setInBitmap(BitmapFactory.Options options, Bitmap recycled) { argument
326 options.inBitmap = recycled;

Completed in 254 milliseconds