Home
last modified time | relevance | path

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

/camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/
DZoomControl.java80 private final ZoomStateImpl mCurrentZoomState; field in ZoomControl
98 mCurrentZoomState = new ZoomStateImpl(mZoomImpl.getMaxZoom(), mZoomImpl.getMinZoom()); in ZoomControl()
99 mCurrentZoomState.setZoomRatio(DEFAULT_ZOOM_RATIO); in ZoomControl()
100 mZoomStateLiveData = new MutableLiveData<>(ImmutableZoomState.create(mCurrentZoomState)); in ZoomControl()
168 synchronized (mCurrentZoomState) { in setActive()
169 mCurrentZoomState.setZoomRatio(DEFAULT_ZOOM_RATIO); in setActive()
170 zoomState = ImmutableZoomState.create(mCurrentZoomState); in setActive()
208 synchronized (mCurrentZoomState) { in setZoomRatio()
210 mCurrentZoomState.setZoomRatio(ratio); in setZoomRatio()
211 zoomState = ImmutableZoomState.create(mCurrentZoomState); in setZoomRatio()
[all …]