Home
last modified time | relevance | path

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

/cts/tests/camera/src/android/hardware/camera2/cts/
DCaptureRequestTest.java3049 float resultZoomRatio = getValueNotNull(result, CaptureResult.CONTROL_ZOOM_RATIO);
3063 + " that in final result", resultZoomRatio, zoomRatioInPartial);
3073 previousRatio, resultZoomRatio),
3074 Math.abs(previousRatio - resultZoomRatio) < ZOOM_ERROR_MARGIN ||
3075 (previousRatio < resultZoomRatio));
3080 + "(requested = %f, result = %f", zoomFactor, resultZoomRatio),
3081 Math.abs(zoomFactor - resultZoomRatio) / zoomFactor <= ZOOM_ERROR_MARGIN);
3115 previousRatio = resultZoomRatio;
3138 "zoomedCrop: %f)", resultZoomRatio, resultZoomRatioWithCrop),
3139 Math.abs(resultZoomRatio - resultZoomRatioWithCrop) < ZOOM_ERROR_MARGIN);
[all …]
DCameraExtensionSessionTest.java2079 Float resultZoomRatio = result.get(CaptureResult.CONTROL_ZOOM_RATIO); in onCaptureResultAvailable() local
2082 "(requested = %f, result = %f", zoomRatio, resultZoomRatio), in onCaptureResultAvailable()
2083 Math.abs(zoomRatio - resultZoomRatio) / zoomRatio <= ZOOM_ERROR_MARGIN); in onCaptureResultAvailable()