OpenGL's version of Colorkeys

In DirectX there was a feature you could set called color keying a texture. This basically made a certain color in a texture “see through”. I was wondering how to do this sort of thing in OpenGL.

You have to add an alpha channel to your texture for color keying in OpenGL. I have an example of this on my OpenGL Tutor page.

Nate http://nate.scuzzy.net

Thanks. That is exactly what I was looking for.