Hi Peter,OK I have looked into this and I have a workaround but I need to investigate further.Even with the app as it is, I do see dithering between colour levels in screenshots from DDMS:
My suspicion is that on other platforms you are requesting RGB565 but getting a higher colour depth returned. The EGL spec allows this, as does Android's setEGLConfigChooser() method.
Leaving the request at 565 but modifying the onCreate() method in SimpleGL.java:glView = new GLView(this);glView.getHolder().setFormat(PixelFormat.RGBA_8888); // Gives smooth gradient.setContentView(glView);I still need to investigate whether this addition is correct and necessary, and also your point about glGet() but in the meantime, does this change produce the same results across platforms for you?
glView = new GLView(this);glView.getHolder().setFormat(PixelFormat.RGBA_8888); // Gives smooth gradient.setContentView(glView);