我一直在做一些简单的着色器,我遇到了一个随机发生的错误,当我开始渲染我的场景时,有时网格会用额外的向量渲染,如果我杀死活动然后我打开相同的活动,它有时会渲染而没有额外的向量。
我的猜测是,当我终止活动时,GPU 上的内存并没有完全消失。更奇怪的是,这些额外的多边形有时会使用我的着色器逻辑进行渲染,而有时它们会渲染为好像填充了随机方块。
我快疯了我已经查看了所有代码,从我阅读 obj 的地方到我设置顶点属性的地方,如果你以前见过这个,请告诉我。顺便说一句,我正在使用带有 android 2.1 的摩托罗拉里程碑。
这是我创建一个简单三角形并设置顶点属性的相关代码:
//This is where I create the mesh
mMesh = new Mesh();
mMesh.setVertices(new float[]{-0.5f, 0f, 0.5f,
0.5f, 0f, -0.5f,
-0.5f, 0f, -0.5f});
ArrayList<VertexAttribute> attributes = new ArrayList<VertexAttribute>();
attributes.add(new VertexAttribute(Usage.Position, 3, ProgramShader.POSITION_ATTRIBUTE));
VertexAttributes vertexAttributes = new VertexAttributes(attributes.toArray(new VertexAttribute[attributes.size()]));
mMesh.setVertexAttributes(vertexAttributes);
...
...
.......
//This is where I send the mesh to opengl
for(VertexAttribute attr :mVertexAttributes.getAttributes().values()){
mVertexBuffer.position(attr.offset);
int handler = shader.getHandler(attr.alias);
if(handler != -1){
try{
GLES20.glVertexAttribPointer(handler, attr.numComponents, GLES20.GL_FLOAT, false, mVertexAttributes.vertexSize, mVertexBuffer);
GLES20.glEnableVertexAttribArray(handler);
}catch (RuntimeException e) {
Log.d("CG", attr.alias);
throw e;
}
}
}
//(length = 3 for a triangle)
GLES20.glDrawArrays(GLES20.GL_TRIANGLES, 0, length);
以下是一些屏幕截图供您查看问题:
这里还有一个链接,指向我在手机上运行应用程序时拍摄的视频。