0

https://github.com/d3kod/Texample2のコードを使用して、OpenGL 2.0 でテキストをレンダリングしています。そのプロジェクトの説明はhttp://primalpond.wordpress.com/2013/02/26/rendering-text-in-opengl-2-0-es-on-android/にあります。

このコードは、Android 4.1.2 を実行している Samsung Galaxy S3 でうまく機能します。ただし、Android 2.3.4 を実行している私の Droid X では機能せず、他の誰かが Android 4.0.4 Onepad 940 タブレットでこの問題を抱えています ( http://primalpond.wordpress.com/2013/02/26を参照)。 /rendering-text-in-opengl-2-0-es-on-android/#comment-89 )。

次の行で 1281 エラーが発生します。 GLES20.glEnableVertexAttribArray(mColorHandle)

GL_MAX_VERTEX_ATTRIBSこれは、私の Droid X の が 8 しかなく、 26 に設定されているためだと判断しましたmColorHandle。Samsung GS3 でアプリを実行すると、GL_MAX_VERTEX_ATTRIBS16 ですが、mColorHandle0 に設定されます。

したがって、26>8 なので、1281 エラーがスローされます。Droid が 26 のハンドル値を取得し、GS3 が 0 を取得する理由がわかりません。

mProgramプログラムは、オブジェクト コンストラクターの次の行で設定されます。

mColorHandle = GLES20.glGetUniformLocation(mProgram.getHandle(), "u_Color");

これは、エラーを作成する行の場所です。

void initDraw(float red, float green, float blue, float alpha) {
GLES20.glUseProgram(mProgram.getHandle()); // specify the program to use

// set color TODO: only alpha component works, text is always black #BUG
float[] color = {red, green, blue, alpha}; 
GLES20.glUniform4fv(mColorHandle, 1, color , 0); 
GLES20.glEnableVertexAttribArray(mColorHandle);

GLES20.glActiveTexture(GLES20.GL_TEXTURE0);  // Set the active texture unit to texture unit 0

GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId); // Bind the texture to this unit

// Tell the texture uniform sampler to use this texture in the shader by binding to texture unit 0
GLES20.glUniform1i(mTextureUniformHandle, 0); 
//Log.i("error", "glerror3: " + GLES20.glGetError());
}

編集

これは、プログラムをセットアップするクラスです。

public class BatchTextProgram extends Program {

private static final AttribVariable[] programVariables = {
    AttribVariable.A_Position, AttribVariable.A_TexCoordinate, AttribVariable.A_MVPMatrixIndex
};

private static final String vertexShaderCode =
        "uniform mat4 u_MVPMatrix[24];      \n"     // An array representing the combined 
                                                    // model/view/projection matrices for each sprite

      + "attribute float a_MVPMatrixIndex; \n"  // The index of the MVPMatrix of the particular sprite
      + "attribute vec4 a_Position;     \n"     // Per-vertex position information we will pass in.
      + "attribute vec2 a_TexCoordinate;\n"     // Per-vertex texture coordinate information we will pass in
      + "varying vec2 v_TexCoordinate;  \n"   // This will be passed into the fragment shader.
      + "void main()                    \n"     // The entry point for our vertex shader.
      + "{                              \n"
      + "   int mvpMatrixIndex = int(a_MVPMatrixIndex); \n"
      + "   v_TexCoordinate = a_TexCoordinate; \n"
      + "   gl_Position = u_MVPMatrix[mvpMatrixIndex]   \n"     // gl_Position is a special variable used to store the final position.
      + "               * a_Position;   \n"     // Multiply the vertex by the matrix to get the final point in
                                                // normalized screen coordinates.
      + "}                              \n";    


private static final String fragmentShaderCode =
        "uniform sampler2D u_Texture;       \n"    // The input texture.
        +   "precision mediump float;       \n"     // Set the default precision to medium. We don't need as high of a
        // precision in the fragment shader.
        + "uniform vec4 u_Color;          \n"
        + "varying vec2 v_TexCoordinate;  \n" // Interpolated texture coordinate per fragment.

        + "void main()                    \n"     // The entry point for our fragment shader.
        + "{                              \n"
        + "   gl_FragColor = texture2D(u_Texture, v_TexCoordinate).w * u_Color;\n" // texture is grayscale so take only grayscale value from  
                                                                                   // it when computing color output (otherwise font is always black)
        + "}                             \n";

@Override
public void init() {
    super.init(vertexShaderCode, fragmentShaderCode, programVariables);
}

}
4

1 に答える 1

1

あなたの論理は壊れています。がユニフォームの場合u_Color、頂点属性にすることはできません。それを修正します。

于 2013-08-28T18:37:11.937 に答える