Home
last modified time | relevance | path

Searched refs:asyncUpdates (Results 1 – 7 of 7) sorted by relevance

/external/lottie/lottie-compose/src/main/java/com/airbnb/lottie/compose/
DLottiePainter.kt41 asyncUpdates: AsyncUpdates = AsyncUpdates.AUTOMATIC, in <lambda>()
55 painter.asyncUpdates = asyncUpdates in <lambda>()
74 asyncUpdates: AsyncUpdates = AsyncUpdates.AUTOMATIC,
86 internal var asyncUpdates by mutableStateOf(asyncUpdates) variable
110 drawable.asyncUpdates = asyncUpdates in onDraw()
DLottieAnimation.kt95 asyncUpdates: AsyncUpdates = AsyncUpdates.AUTOMATIC, in <lambda>()
123 drawable.asyncUpdates = asyncUpdates in <lambda>()
169 asyncUpdates: AsyncUpdates = AsyncUpdates.AUTOMATIC, in LottieAnimation()
184 asyncUpdates = asyncUpdates, in LottieAnimation()
219 asyncUpdates: AsyncUpdates = AsyncUpdates.AUTOMATIC, in LottieAnimation()
245 asyncUpdates = asyncUpdates, in LottieAnimation()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/
DLottieConfig.java145 public Builder setDefaultAsyncUpdates(AsyncUpdates asyncUpdates) { in setDefaultAsyncUpdates() argument
146 defaultAsyncUpdates = asyncUpdates; in setDefaultAsyncUpdates()
DL.java142 public static void setDefaultAsyncUpdates(AsyncUpdates asyncUpdates) { in setDefaultAsyncUpdates() argument
143 L.defaultAsyncUpdates = asyncUpdates; in setDefaultAsyncUpdates()
DLottieDrawable.java183 @Nullable private AsyncUpdates asyncUpdates; field in LottieDrawable
475 AsyncUpdates asyncUpdates = this.asyncUpdates; in getAsyncUpdates() local
476 if (asyncUpdates != null) { in getAsyncUpdates()
477 return asyncUpdates; in getAsyncUpdates()
497 public void setAsyncUpdates(@Nullable AsyncUpdates asyncUpdates) { in setAsyncUpdates() argument
498 this.asyncUpdates = asyncUpdates; in setAsyncUpdates()
DLottieAnimationView.java1230 public void setAsyncUpdates(AsyncUpdates asyncUpdates) { in setAsyncUpdates() argument
1231 lottieDrawable.setAsyncUpdates(asyncUpdates); in setAsyncUpdates()
/external/lottie/
DCHANGELOG.md65 * Allow globally configuring asyncUpdates ([#2356](https://github.com/airbnb/lottie-android/pull/23…
83 * New multithreaded `asyncUpdates` feature which moves the entire update phase of an animation off …
87 * Fix asyncUpdates for Nougat and below ([#2380](https://github.com/airbnb/lottie-android/pull/2380…