Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Does the color come from images? Are you using any kind of compression in them? It seems like the fluctuation could come from the colors in the image being altered by the compression, if that is the case then the fluctuation is normal because fingers always move slightly when touching the screen. – RedOrav Jan 15 at 18:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.