Can GLU.gluLookAt interfere with draw() on openGL? The object renders, but fails to be visible within the projection window. There are no errors thrown. In this scenario I am adapting the TouchRotate Google API example with my own shape(vertices). I was unclear how to implement a color int buffer, but attempted to adapt the one they had in place. This may be the source, but have yet to find any documentation that clearly defines this problem.
myCube Class
package com.glexample;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.IntBuffer;
import java.nio.ShortBuffer;
import javax.microedition.khronos.opengles.GL10;
public class GLCube {
// CREATE VARIABLES
private ShortBuffer pointBuffer;
private FloatBuffer verticeBuffer;
private IntBuffer mColorBuffer;
private float vertices[] = {
0, 0, 0, //p0 - center
1, 0, 0, //p1 - x+1
0, 0, -1, //p2 - z-1
0, 1, 0, //p3 - y+1
0, 0, 1, //p4 - z+1
-1, 0, 0, //p5 - x-1
0, -1, 0, //p6 - y-1
};
int one = 0x10000;
int colors[] = {
0, 0, 0, one,
one, 0, 0, one,
one, one, 0, one,
0, one, 0, one,
0, 0, one, one,
one, 0, one, one,
one, one, one, one,
};
private short[] pointindex = {
0,2,1, 0,2,3, 1,2,3, 0,3,2,
0,5,2, 0,2,3, 2,5,3, 0,3,5,
0,4,5, 0,5,3, 5,4,3, 0,3,4,
0,1,4, 0,4,3, 4,1,3, 0,3,1,
0,1,2, 0,6,1, 1,6,2, 0,2,6,
0,4,1, 0,6,4, 4,6,1, 0,1,6,
0,5,4, 0,5,6, 5,6,4, 0,4,6,
0,2,5, 0,6,2, 2,6,5, 0,5,6
};
// Setup constructor
public GLCube() {
// setup vertex and byte buffer // used to render to screen
ByteBuffer verticebuffer = ByteBuffer.allocateDirect(vertices.length * 4); // allocate memory to render
verticebuffer.order(ByteOrder.nativeOrder());
verticeBuffer = verticebuffer.asFloatBuffer();
verticeBuffer.put(vertices); // place vertice list within verticebuffer
verticeBuffer.position(0); // where to begin render
ByteBuffer cbb = ByteBuffer.allocateDirect(colors.length*4);
cbb.order(ByteOrder.nativeOrder());
mColorBuffer = cbb.asIntBuffer();
mColorBuffer.put(colors);
mColorBuffer.position(0);
ByteBuffer pointbyteBuffer = ByteBuffer.allocateDirect(pointindex.length * 2);
pointbyteBuffer.order(ByteOrder.nativeOrder());
pointBuffer = pointbyteBuffer.asShortBuffer();
pointBuffer.put(pointindex);
pointBuffer.position(0);
}
// CREATE draw.object to GL10.client
// how to draw triangle, side display, disable backside?
public void draw(GL10 gl) {
gl.glFrontFace(GL10.GL_CW); // clockwise connection
// OPTIMIZE
gl.glEnable(GL10.GL_CULL_FACE); // focus rendering only visible side
gl.glCullFace(GL10.GL_BACK);
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY); // enable use of vertex array
gl.glVertexPointer(3, GL10.GL_FLOAT, 0, verticeBuffer);
gl.glDrawElements(GL10.GL_TRIANGLES, pointindex.length, GL10.GL_UNSIGNED_SHORT, pointBuffer);
gl.glDisable(GL10.GL_CULL_FACE); // disable cull face
gl.glDisableClientState(GL10.GL_VERTEX_ARRAY); // disable client
}
}
My Render Class
package com.glexample;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import android.opengl.GLU;
import android.opengl.GLSurfaceView;
public class GLRendererEx implements GLSurfaceView.Renderer{
private GLCube object;
private float mAngle;
private boolean mTranslucentBackground;
public GLRendererEx(boolean useTranslucentBackground) {
mTranslucentBackground = useTranslucentBackground;
object = new GLCube();
}
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
gl.glDisable(GL10.GL_DITHER); // speed up performance
gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, GL10.GL_FASTEST); // another speed boost
if (mTranslucentBackground) {
gl.glClearColor(0,0,0,0);
} else {
gl.glClearColor(1,1,1,1);
}
gl.glEnable(GL10.GL_CULL_FACE);
gl.glShadeModel(GL10.GL_SMOOTH);
gl.glEnable(GL10.GL_DEPTH_TEST);
//gl.glClearColor(.8f, 0, .2f, 1);
gl.glClearDepthf(1f);
}
@Override
public void onDrawFrame(GL10 gl) {
gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT); // clears screen
gl.glMatrixMode(GL10.GL_MODELVIEW);
gl.glLoadIdentity();
GLU.gluLookAt(gl, 0, 0, -5, 0, 0, 0, 0, 2f, 0);
gl.glTranslatef(0, 0, -3.0f);
gl.glRotatef(mAngle, 0, 1, 0); // ADD rotation
gl.glRotatef(mAngle*0.25f, 1, 0, 0);
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
object.draw(gl);
gl.glRotatef(mAngle*2.0f, 0, 1, 1);
gl.glTranslatef(0.5f, 0.5f, 0.5f);
object.draw(gl);
mAngle += 1.2f;
}
@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
//gl.glViewport(x, y, width, height);
gl.glViewport(0, 0, width, height);
float ratio = (float) width / height; // create view ratio
gl.glMatrixMode(GL10.GL_PROJECTION); // 3D projection
gl.glLoadIdentity();
gl.glFrustumf(-ratio, ratio, -1, 1, 1, 10); // set boundaries of view
}
}
My Activity
package com.glexample;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import android.app.Activity;
import android.content.Context;
import android.opengl.GLSurfaceView;
import android.os.Bundle;
import android.view.MotionEvent;
public class GLExample extends Activity {
// CREATE VARIABLES
private GLSurfaceView ourSurface;
// ONCREATE
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ourSurface = new TouchSurfaceView(this);
//ourSurface.setRenderer(new GLRendererEx());
setContentView(ourSurface);
ourSurface.requestFocus();
ourSurface.setFocusableInTouchMode(true);
}
// ONPAUSE
@Override
protected void onPause() {
super.onPause();
ourSurface.onPause();
}
// ONRESUME
@Override
protected void onResume() {
super.onResume();
ourSurface.onResume();
}
}
class TouchSurfaceView extends GLSurfaceView {
// CREATE VARIABLES
private final float TOUCH_SCALE_FACTOR = 180.0f / 320;
private final float TRACKBALL_SCALE_FACTOR = 36.0f;
private GLRendererEx mRenderer;
private float mPreviousX;
private float mPreviousY;
public TouchSurfaceView(Context context) {
super(context);
mRenderer = new GLRendererEx();
setRenderer(mRenderer);
setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);
}
@Override public boolean onTrackballEvent(MotionEvent e) {
mRenderer.mAngleX += e.getX() * TRACKBALL_SCALE_FACTOR;
mRenderer.mAngleY += e.getY() * TRACKBALL_SCALE_FACTOR;
requestRender();
return true;
}
@Override public boolean onTouchEvent(MotionEvent e) {
float x = e.getX();
float y = e.getY();
switch (e.getAction()) {
case MotionEvent.ACTION_MOVE:
float dx = x - mPreviousX;
float dy = y - mPreviousY;
mRenderer.mAngleX += dx * TOUCH_SCALE_FACTOR;
mRenderer.mAngleY += dy * TOUCH_SCALE_FACTOR;
requestRender();
}
mPreviousX = x;
mPreviousY = y;
return true;
}
private class GLRendererEx implements GLSurfaceView.Renderer {
private GLCube mCube;
public float mAngleX;
public float mAngleY;
public GLRendererEx() {
mCube = new GLCube();
}
public void onDrawFrame(GL10 gl) {
gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
gl.glMatrixMode(GL10.GL_MODELVIEW);
gl.glLoadIdentity();
gl.glTranslatef(0, 0, -3.0f);
gl.glRotatef(mAngleX, 0, 1, 0);
gl.glRotatef(mAngleY, 1, 0, 0);
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
mCube.draw(gl);
}
public void onSurfaceChanged(GL10 gl, int width, int height) {
gl.glViewport(0, 0, width, height);
/*
* Set our projection matrix. This doesn't have to be done
* each time we draw, but usually a new projection needs to
* be set when the viewport is resized.
*/
float ratio = (float) width / height;
gl.glMatrixMode(GL10.GL_PROJECTION);
gl.glLoadIdentity();
gl.glFrustumf(-ratio, ratio, -1, 1, 1, 10);
}
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
gl.glDisable(GL10.GL_DITHER);
gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, GL10.GL_FASTEST);
gl.glClearColor(1,1,1,1);
gl.glEnable(GL10.GL_CULL_FACE);
gl.glShadeModel(GL10.GL_SMOOTH);
gl.glEnable(GL10.GL_DEPTH_TEST);
}
}
}