Android 4.3 PBO not working
问题 I am using PBO to take screenshot. However, the result image is all black. It works perfectly fine without PBO . Is there any thing that I need to take care before doing this ? I even tried by rendering to a FBO and then use GLES30.glReadBuffer(GLES30.GL_COLOR_ATTACHMENT0) , no hope public void SetupPBO(){ GLES30.glGenBuffers(1, pbuffers, 0); GLES30.glBindBuffer(GLES30.GL_PIXEL_PACK_BUFFER, pbuffers[0]); int size = (int)this.mScreenHeight * (int)this.mScreenWidth * 4; GLES30.glBufferData