Package com.badlogic.gdx.graphics

Examples of com.badlogic.gdx.graphics.GL10.glDisable()


    drawing = false;

    if (Gdx.graphics.isGL20Available() == false) {
      GL10 gl = Gdx.gl10;
      gl.glDepthMask(true);
      gl.glDisable(GL10.GL_TEXTURE_2D);
      mesh.unbind();
    } else {
      shader.end();
      GL20 gl = Gdx.gl20;
      gl.glDepthMask(true);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.