Android Utililty Methods GL10 State Change

List of utility methods to do GL10 State Change

Description

The list of methods to do GL10 State Change are organized into topic(s).

Method

voidtoggleState(GL10 gl, int cap, boolean state)
toggle State
if (state) {
    gl.glEnable(cap);
} else {
    gl.glDisable(cap);