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; //from ww w . ja va 2 s . c o m import android.content.Context; import android.view.SurfaceHolder; import android.view.SurfaceView; import java.io.IOException; public interface PreviewSurfaceHelper { SurfaceView createPushBufferSurfaceViewIfNeed(Context context); void setZOrderMediaOverlay(SurfaceView surface); void setPreviewDisplay(SurfaceHolder holder) throws IOException; }