I'm trying to figure out how to remove all green pixels of a picture i am rendering. I've already searched the web, but found nothing I can use.
I know I probably have to use this function:
gl.glEnable(GL10.GL_BLEND);
gl.glBlendFunc(GL10.GL_SRC_ALPHA, GL10.GL_ONE_MINUS_SRC_ALPHA);
If I'm right, how do I change the color to green?
Thanks for your help.