Example usage for com.badlogic.gdx.backends.android.surfaceview GdxEglConfigChooser GdxEglConfigChooser

List of usage examples for com.badlogic.gdx.backends.android.surfaceview GdxEglConfigChooser GdxEglConfigChooser

Introduction

In this page you can find the example usage for com.badlogic.gdx.backends.android.surfaceview GdxEglConfigChooser GdxEglConfigChooser.

Prototype

public GdxEglConfigChooser(int r, int g, int b, int a, int depth, int stencil, int numSamples) 

Source Link

Usage

From source file:com.badlogic.gdx.backends.android.CardBoardGraphics.java

License:Apache License

protected EGLConfigChooser getEglConfigChooser() {
    return new GdxEglConfigChooser(config.r, config.g, config.b, config.a, config.depth, config.stencil,
            config.numSamples);
}