in vito/options/src/main/java/com/facebook/fresco/vito/options/DecodedImageOptions.java [109:124]
protected boolean equalDecodedOptions(DecodedImageOptions other) {
if (!Objects.equal(mResizeOptions, other.mResizeOptions)
|| !Objects.equal(mRotationOptions, other.mRotationOptions)
|| !Objects.equal(mPostprocessor, other.mPostprocessor)
|| !Objects.equal(mImageDecodeOptions, other.mImageDecodeOptions)
|| !Objects.equal(mRoundingOptions, other.mRoundingOptions)
|| !Objects.equal(mBorderOptions, other.mBorderOptions)
|| !Objects.equal(mActualImageScaleType, other.mActualImageScaleType)
|| !Objects.equal(mActualImageFocusPoint, other.mActualImageFocusPoint)
|| mLocalThumbnailPreviewsEnabled != other.mLocalThumbnailPreviewsEnabled
|| mProgressiveDecodingEnabled != other.mProgressiveDecodingEnabled
|| !Objects.equal(mBitmapConfig, other.mBitmapConfig)) {
return false;
}
return equalEncodedOptions(other);
}