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.View; /*from ww w . j ava2 s . c o m*/ import com.af.experiments.FxCameraApp.camera.CameraHelper; import java.io.IOException; public interface PreviewTexture { public interface OnFrameAvailableListener { void onFrameAvailable(PreviewTexture previewTexture); } void setOnFrameAvailableListener(final OnFrameAvailableListener l); int getTextureTarget(); void setup(CameraHelper camera) throws IOException; void updateTexImage(); void getTransformMatrix(float[] mtx); }