views:

86

answers:

3

I have follow an example of an opengl application and I don't know why is this thing happening...

I have a GLSurfaceView with it's corresponding renderer drawing a triangle. But, instead of getting the whole view on screen, I have just the upper half, and it's also duplicated as you can see on the picure. I'm using a Nexus One alt text

the xml:

<?xml version="1.0" encoding="utf-8"?>
<com.forgottenprojects.geoturista.DrawingLayer 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/drawing" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
/> 

The activity has this in the manifest:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

The DrawingLayer class:

public class DrawingLayer extends GLSurfaceView {
private TriangleRenderer renderer;
private Context context;
public DrawingLayer(Context context, AttributeSet attrs) {
    super(context, attrs);
    init(context);
}
public DrawingLayer(Context context) {
    super(context);
    init(context);
}
private void init(Context c)
{
    this.context = c;
    setEGLConfigChooser(false);
    this.renderer = new TriangleRenderer(c);
    setRenderer(renderer);
    setRenderMode(GLSurfaceView.RENDERMODE_CONTINUOUSLY);
    getHolder().setFormat(PixelFormat.TRANSLUCENT);
}
}

The triangle renderer (most of it from Apress Pro Android 2 book)

public class TriangleRenderer implements Renderer {
private final static int VERTS = 3;
private FloatBuffer mFVertexBuffer;
private ShortBuffer mIndexBuffer;

  TriangleRenderer(Context context)
  {
      ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 3 * 4);
      vbb.order(ByteOrder.nativeOrder());
      mFVertexBuffer = vbb.asFloatBuffer();
      ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 2);
      ibb.order(ByteOrder.nativeOrder());
      mIndexBuffer = ibb.asShortBuffer();
      float[] coords = {
      -0.5f, -0.5f, 0, // (x1,y1,z1)
      0.5f, -0.5f, 0,
      0.0f, 0.5f, 0
      };
      for (int i = 0; i < VERTS; i++) {
          for(int j = 0; j < 3; j++) {
              mFVertexBuffer.put(coords[i*3+j]);
          }
      }
      short[] myIndecesArray = {0,1,2};
      for (int i=0;i<3;i++)
      {
          mIndexBuffer.put(myIndecesArray[i]);
      }
      mFVertexBuffer.position(0);
      mIndexBuffer.position(0);
  }
  protected void draw(GL10 gl)
  {
      gl.glColor4f(1.0f, 0, 0, 0.5f);
      gl.glVertexPointer(3, GL10.GL_FLOAT, 0, mFVertexBuffer);
      gl.glDrawElements(GL10.GL_TRIANGLES, VERTS,
      GL10.GL_UNSIGNED_SHORT, mIndexBuffer);
  }
 @Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
     gl.glDisable(GL10.GL_DITHER);
     gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, GL10.GL_FASTEST);
     gl.glClearColor(0.5f, 0.5f, 0.5f, 1.0f);
     gl.glShadeModel(GL10.GL_SMOOTH);
     gl.glEnable(GL10.GL_DEPTH_TEST);
}
@Override
public void onDrawFrame(GL10 gl) {
    gl.glDisable(GL10.GL_DITHER);
    gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
    gl.glClearColor(1.0f, 0.5f, 0.7f, 1.0f);
    gl.glMatrixMode(GL10.GL_MODELVIEW);
    gl.glLoadIdentity();
    GLU.gluLookAt(gl, 0, 0, -5, 0f, 0f, 0f, 0f, 1f, 0f);
    gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
    draw(gl);
}
@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
    gl.glViewport(0, 0, width, height);
    gl.glMatrixMode(GL10.GL_PROJECTION);
    float ratio = (float)width / (float)height;
    gl.glLoadIdentity();
    gl.glFrustumf(-ratio, ratio, -1, 1, 3, 7);
}
}

Thanks in advance!

A: 

Looks like your EGL display configuration is wrong.

Pierre-Antoine LaFayette
How it should be?
ferdy182
A: 

It worked with

setEGLConfigChooser(8,8,8,8,4,4);

but I don't know how to apply transparency behind it (because there is another surfaceview with a camera view)

ferdy182
Ok I made it using gl.glClearColor(0f, 0f, 0f, 0.0f);
ferdy182
A: 

I have the same problem, but setEGLConfigChooser(8,8,8,8,4,4) doesn't look like cross platform solution.

opengenius