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 try to implement color picking in Android OpenGL ES.

Here I get the coordinate:

public boolean onTouchEvent(MotionEvent e) {
   float x = e.getX();
   float y = e.getY();
   ...

Here I want to get the pixel information on click:

public void processPick(GL10 gl){
    ByteBuffer pixel = ByteBuffer.allocate(4);
    pixel.order(ByteOrder.nativeOrder());
    gl.glReadPixels((int)clickPosX, (int)clickPosY, 1, 1, GL10.GL_RGB, GL10.GL_UNSIGNED_BYTE, pixel);
    byte[] b = new byte[3];
    pixel.get(b);
    Log.d("buffer", b[0] + ",  "+b[1]+", "+b[2]);
}

But actually I always get RGB(0, 0, 0), what's wrong? How to set color and pick color correctly?

Anyone can help me? Thanks!

share|improve this question

1 Answer

Try this: gl.glReadPixels((int)clickPosX, (int)clickPosY, 1, 1, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, pixel); byte[] b = new byte[4];

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.