I'm developing an app in OpenGL ES 1.x for Android, and I'm having problems with the depth test for polygons with alpha masks.
How can I make the program to compute the depth testing only in the values with alpha!=0?
I tried with glEnable(GL_ALPHA_TEST); glAlphaFunc(GL_GREATER, 0.1f);, but it doesn't change anything, I don't understand why.
Thanks in advance.