I am using:
gl.glReadPixels(x, y, 1, 1, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, colourBuffer);
where colourBuffer is a ByteBuffer with space for 4 bytes, in an android app just after drawing everything to retrieve the colour of a pixel in which the user taps. I have an array of white textures with their respective alphas mapped to quads (a two triangle strip actually) to which I give colour with:
gl.glColor4f((float)red/255f, (float)green/255f, (float)blue/255f, alpha);
where red, green, and blue are ints ranging from 0 to 255 and alpha is a float (always set to 1.0f). I am having no problem retrieving the values of those components set to 255 or 0, but when the value is somewhere in between it returns fluctuating values. Let me give an example:
I have defined the Crimson colour as RGB (220, 20, 60), but whenever I tap in the crimson part of the screen I get these values:
(222, 20, 66)
(222, 20, 57)
(214, 20, 57)
(214, 16, 57) //This one less often
These values seem to generate randomly, without a fixed pattern, and I don't know where the bug is.
I also made sure that there are no other crimson tonalities around.
If you asked me to take a shot I would say it is a precision problem, but that also doesn't make sense, because in that case the fluctuations should have a value of 1 I guess.
So, where my problem/mistake could possibly be?
Thanks in advance.