Back to project page FxCameraApp.
The source code is released under:
MIT License
If you think the Android project FxCameraApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.af.experiments.FxCameraApp.ogles; // w w w . jav a 2s. c o m import com.af.experiments.FxCameraApp.camera.CameraHelper; public final class PreviewSurfaceHelperFactory { public static PreviewSurfaceHelper newPreviewSurfaceHelper(final CameraHelper camera) { return new PreviewSurfaceHelperBase(camera); } private PreviewSurfaceHelperFactory() {} }