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 w w w . ja v a 2 s . c o m*/ import com.af.experiments.FxCameraApp.View.PreviewTexture; public class GlPreviewTextureFactory { private static final int HONYCOMB = 11; public static PreviewTexture newPreviewTexture(final int texName) { return new GlSurfaceTexture(texName); } private GlPreviewTextureFactory() {} }