如何在android和opengl 1.1中使用顶点缓冲区

时间:2012-07-22 18:22:55

标签: android opengl-es-1.1

我花了将近一整天的时间尝试使用opengl 1.1和顶点缓冲区渲染简单的多边形,但没有运气。我搜索和搜索,但我找不到多少。

这是我到目前为止所做的:

public class Polygon {

    int bufferId = 0;

    private FloatBuffer vertexBuffer;  // Buffer for vertex-array

    private float[] vertices = {  // Vertices for the square
            -1.0f, -1.0f, 0.0f,  // 0. left-bottom
            1.0f, -1.0f, 0.0f,  // 1. right-bottom
            -1.0f, 1.0f, 0.0f,  // 2. left-top
            1.0f, 1.0f, 0.0f   // 3. right-top
    };

    private ByteBuffer indexBuffer;

    private byte[] indices = {0, 1, 2, 3}; // Indices to above vertices (in CCW)


    // Constructor - Setup the vertex buffer
    public Polygon() {
        // Setup vertex array buffer. Vertices in float. A float has 4 bytes
        ByteBuffer vbb = ByteBuffer.allocateDirect(vertices.length * 4);
        vbb.order(ByteOrder.nativeOrder()); // Use native byte order
        vertexBuffer = vbb.asFloatBuffer(); // Convert from byte to float
        vertexBuffer.put(vertices);         // Copy data into buffer
        vertexBuffer.position(0);           // Rewind


        indexBuffer = ByteBuffer.allocateDirect(indices.length);
        indexBuffer.put(indices);
        indexBuffer.position(0);


        int[] buffers = new int[1];
        GLES11.glGenBuffers(1, buffers, 0);
        bufferId = buffers[0];

        GLES11.glBindBuffer(GLES11.GL_ARRAY_BUFFER, bufferId);
        GLES11.glBufferData(GLES11.GL_ARRAY_BUFFER, vertices.length, vertexBuffer, GLES11.GL_STATIC_DRAW);
        GLES11.glBindBuffer(GLES11.GL_ARRAY_BUFFER, 0);
    }


    // Render the shape
    public void draw(GL10 gl) {

        GLES11.glBindBuffer(GLES11.GL_ARRAY_BUFFER, bufferId);

        GLES11.glEnableClientState(GL10.GL_VERTEX_ARRAY);
        GLES11.glVertexPointer(3, GLES11.GL_FLOAT, 0, 0);
        GLES11.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, vertices.length);
        GLES11.glDisableClientState(GL10.GL_VERTEX_ARRAY);

        GLES11.glBindBuffer(GLES11.GL_ARRAY_BUFFER, 0);
    }
}

它没有呈现任何内容,并且android logcat中没有相关错误。 我省略了其余的代码。问题显然在这个类中,因为当我将draw方法改为此时它可以正常工作:

public void draw(GL10 gl) {

            GLES11.glEnableClientState(GL10.GL_VERTEX_ARRAY);
            GLES11.glVertexPointer(3, GLES11.GL_FLOAT, 0, vertexBuffer);
            GLES11.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, vertices.length);
            GLES11.glDisableClientState(GL10.GL_VERTEX_ARRAY);

        }

那么,我做错了什么?

1 个答案:

答案 0 :(得分:0)

  1. 不要在logCat中查找错误,要使用glGetError()检查OpenGL错误,并检查返回值是否为零(无错误),或非零(错误)。

  2. vertices.length是glDrawArrays的错误参数。您想提供顶点数,而不是浮点数。它应该是vertices.length / 3(每个顶点3个浮点数)。 你现在正在通过你的阵列绘制一些垃圾数据,所以我不确定会产生什么样的后果。