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 .j a va2 s . c o m*/ public class GLES20ConfigChooser extends DefaultConfigChooser { private static final int EGL_CONTEXT_CLIENT_VERSION = 2; public GLES20ConfigChooser() { super(EGL_CONTEXT_CLIENT_VERSION); } public GLES20ConfigChooser(final boolean withDepthBuffer) { super(withDepthBuffer, EGL_CONTEXT_CLIENT_VERSION); } public GLES20ConfigChooser(final int redSize, final int greenSize, final int blueSize, final int alphaSize, final int depthSize, final int stencilSize) { super(redSize, greenSize, blueSize, alphaSize, depthSize, stencilSize, EGL_CONTEXT_CLIENT_VERSION); } }