0

Android で openGL を使用するのはほぼ 2 回目ですが、次の 2 つの奇妙なエラー メッセージを解読することさえできません。

E/InputDispatcher(60): channel '407a76f8 root.AirGates/root.AirGates.AirGatesActivity (server)' ~ Consumer closed input channel or an error occurred.  events=0x8
E/InputDispatcher(60): channel '407a76f8 root.AirGates/root.AirGates.AirGatesActivity (server)' ~ Channel is unrecoverably broken and will be disposed!

以下のすべてのopenGLコードを分離しようとしました:

ビューポートの設定:

GL10 graphics = glGraphics.getGlGraphics();

graphics.glClearColor(0.0f, 0.0f, 0.0f, 1);
graphics.glViewport(0, 0, glGraphics.getWidth(), glGraphics.getHeight());

graphics.glMatrixMode(GL10.GL_PROJECTION);
graphics.glLoadIdentity();

graphics.glOrthof(0, glGraphics.getWidth(), 0, glGraphics.getHeight(), 1, -1);

レンダリングする前に (頂点のインデックスと値を設定する):

// allocate a 'raw' byte buffer, then 'cast it' into a ShortBuffer a short has 2 bytes of memory and there are 6 values
// (6 values because 2 tris with 3 vertices each, make up a quad)
// 0---1
// | / |
// 3---2
ByteBuffer tempBuffer = ByteBuffer.allocate(6 * 2);
tempBuffer.order(ByteOrder.nativeOrder());
vertexNumIndexes = tempBuffer.asShortBuffer();
vertexNumIndexes.put(new short[]{0,1,3, 1,2,3});
vertexNumIndexes.flip();

// need to allocate memory to hold the vertices: float is 4 bytes, times 4 vertices, times 2 (each vertex has an x and y)
ByteBuffer byteBuffer = ByteBuffer.allocateDirect(4 * 2 * 4);
byteBuffer.order(ByteOrder.nativeOrder());
vertices = byteBuffer.asFloatBuffer();
Point temp;
for(int counter = 0; counter < 4; counter++){
    temp = gate.getPoint(counter);
    vertices.put(temp.x);
    vertices.put(temp.y);
}
vertices.flip();

// values in 'vertices' are:
// 140.18016, 387.5
// 339.81982, 387.5
// 339.81982, 412.5
// 140.18016, 412.5

私の実際の render() メソッド呼び出しでは:

GL10 graphics = glGraphics.getGlGraphics();

// set colour, RGBA
graphics.glColor4f(1, 1, 0, 1);

graphics.glEnableClientState(GL10.GL_VERTEX_ARRAY);
graphics.glVertexPointer(2, GL10.GL_FLOAT, 0, vertices);
graphics.glDrawElements(GL10.GL_TRIANGLES, 6, GL10.GL_UNSIGNED_SHORT, vertexNumIndexes);
graphics.glDisableClientState(GL10.GL_VERTEX_ARRAY);

私のアプリがポップアップし、(ビューポートによって設定されたように) フルスクリーンの黒になり、終了します。それが何を意味するのか分かりますか?現時点では、単純な赤い長方形 (2 つの三角形で構成される) を描画しようとしています。

4

0 に答える 0