0

私は OpenGL を初めて使用します。知りたいのは、glDrawElements (x、y、z) を Android のビュー ポートに対して相対的に設定する方法です。

glDrawElements を使用して図形を描画するために、この例を使用していません。次のようになります。

float textureCoordinates[] = {
                0.0f, 1.0f, //
                1.0f, 1.0f, //
                0.0f, 0.0f, //
                1.0f, 0.0f, //
        };

        short[] indices = new short[]{0, 1, 2, 1, 3, 2};

        float[] vertices = new float[]{
                -1f, -1f, 0.0f,
                1f, -1f, 0.0f,
                -1f, 1f, 0.0f,
                1f, 1f, 0.0f};

ドローは次のようになります。

// Counter-clockwise winding.
        gl.glFrontFace(GL10.GL_CCW);
        // Enable face culling.
        gl.glEnable(GL10.GL_CULL_FACE);
        // What faces to remove with the face culling.
        gl.glCullFace(GL10.GL_BACK);
        // Enabled the vertices buffer for writing and to be used during
        // rendering.
        gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
        // Specifies the location and data format of an array of vertex
        // coordinates to use when rendering.
        gl.glVertexPointer(3, GL10.GL_FLOAT, 0, mVerticesBuffer);
        // Set flat color
        gl.glColor4f(mRGBA[0], mRGBA[1], mRGBA[2], mRGBA[3]);
        // Smooth color
        if (mColorBuffer != null) {
            // Enable the color array buffer to be used during rendering.
            gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
            gl.glColorPointer(4, GL10.GL_FLOAT, 0, mColorBuffer);
        }

        // New part...
        if (mShouldLoadTexture) {
            loadGLTexture(gl);
            mShouldLoadTexture = false;
        }
        if (mTextureId != -1 && mTextureBuffer != null) {
            gl.glEnable(GL10.GL_TEXTURE_2D);
            // Enable the texture state
            gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);

            // Point to our buffers
            gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, mTextureBuffer);
            gl.glBindTexture(GL10.GL_TEXTURE_2D, mTextureId);
        }
        // ... end new part.

        gl.glTranslatef(x, y, z);
        gl.glRotatef(rx, 1, 0, 0);
        gl.glRotatef(ry, 0, 1, 0);
        gl.glRotatef(rz, 0, 0, 1);

        // Point out the where the color buffer is.
        gl.glDrawElements(GL10.GL_TRIANGLES, mNumOfIndices,
                GL10.GL_UNSIGNED_SHORT, mIndicesBuffer);
        // Disable the vertices buffer.
        gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);

        // New part...
        if (mTextureId != -1 && mTextureBuffer != null) {
            gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
        }
        // ... end new part.

        // Disable face culling.
        gl.glDisable(GL10.GL_CULL_FACE);

私の場合、x = y = z = 0

これは私が表面変更で行ったことです:

public void onSurfaceChanged(GL10 gl, int width, int height) {
        // Sets the current view port to the new size.
        gl.glViewport(0, 0, width, height);
        // Select the projection matrix
        gl.glMatrixMode(GL10.GL_PROJECTION);
        // Reset the projection matrix
        gl.glLoadIdentity();
        // Calculate the aspect ratio of the window
        GLU.gluPerspective(gl, 45, (float) width / (float) height, -1f, 1f);
        // Select the modelview matrix
        gl.glMatrixMode(GL10.GL_MODELVIEW);
        // Reset the modelview matrix
        gl.glLoadIdentity();
    }

これは画面の中央にテクスチャを描画します (例のように) が、ビュー ポートでそれを制御し、ビュー ポートに相対的な x、y、z を設定するにはどうすればよいですか?

編集:私がやりたいことは、画面サイズを設定し、指定された座標(x、y、z)で2D画像を描画することだけです。

4

1 に答える 1

0

テクスチャを描画するだけの場合は、透視投影をやめて、単純な正射行列を行うことをお勧めします。

gluPerspective を次のようなものに置き換えます

glOrtho(0, screen_width, 0, screen_height, -1, 1);

次に、ピクセル位置に頂点を描画できます。つまり、フルスクリーン テクスチャの場合です。

float w = screen_width;
float h = screen_height;
float[] vertices = new float[]{
                0, 0,
                w, 0,
                0, h,
                w, h,
}
于 2012-05-21T21:00:17.037 に答える