Examples of glMatrixMode()


Examples of javax.media.opengl.GL2ES1.glMatrixMode()

    }

    @Override
    public void setMatrixMode(final int matrixMode) {
        final GL2ES1 gl = GLContext.getCurrentGL().getGL2ES1();
        gl.glMatrixMode(matrixMode);
    }

    @Override
    public void pushMatrix() {
        final GL2ES1 gl = GLContext.getCurrentGL().getGL2ES1();
View Full Code Here

Examples of javax.microedition.khronos.opengles.GL11.glMatrixMode()

        final GL11 gl = (GL11) renderer;

        gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);

        // Set up the perspective projection
        gl.glMatrixMode(GL10.GL_PROJECTION);
        gl.glLoadIdentity();
        GLUtils.gluPerspective(gl, 45.0f, _aspect, 0.15f, 1000.0f);

        // Set up the local modelview transform and render it
        gl.glMatrixMode(GL10.GL_MODELVIEW);
View Full Code Here

Examples of net.java.games.jogl.GL.glMatrixMode()

        gl.glTexImage2D(GL.GL_TEXTURE_2D, 0, GL.GL_RGBA, width, height, 0,  GL.GL_RGBA, GL.GL_UNSIGNED_INT_8_8_8_8, (char[])null);

        //System.out.println("time :: " + (System.currentTimeMillis() - time)); 
        gl.glClear(GL.GL_COLOR_BUFFER_BIT);
        gl.glMatrixMode(GL.GL_PROJECTION);   
        gl.glLoadIdentity();              
        glu.gluOrtho2D(-1.0, 1.0, -1.0, 1.0);
       
        cgContext = CgGL.cgCreateContext();
        int errorCg = CgGL.cgGetError();
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.