Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
set useAutoFocus to true by default
there's no way to set useAutoFocus to `true` and it is `false` by default so the auto focus is not working.
  • Loading branch information
markfili authored Jan 7, 2021
commit c9cf7e5bddb4a5f4503a8364acf5d87bfad904be
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class Camera {
private PictureCaptureRequest pictureCaptureRequest;
private CameraRegions cameraRegions;
private int exposureOffset;
private boolean useAutoFocus;
private boolean useAutoFocus = true;
private Range<Integer> fpsRange;

public Camera(
Expand Down