Searched defs:outCache (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp550 void Tree::updateBitmapCache(SkBitmap* outCache, bool useStagingData) { argument
551 outCache->eraseColor(SK_ColorTRANSPARENT);
552 SkCanvas outCanvas(*outCache);
557 float scaleX = outCache->width() / viewportWidth;
558 float scaleY = outCache->height() / viewportHeight;
562 bool Tree::allocateBitmapIfNeeded(SkBitmap* outCache, int width, int height) { argument
563 if (!canReuseBitmap(*outCache, width, height)) {
566 outCache->setInfo(info);
568 outCache->allocPixels(info);

Completed in 72 milliseconds