Vertex Colors

Hi
Iam trying to colorize a texture using glColor. It works fine for blended geometry but doesnt work for non-blended geometry.
What do I need to do for it to work?
Thanks

Paste this line before rendering a polygon:

glTexEnvi (GL_TEX_ENV, GL_TEX_ENV_MODE, GL_MODULATE);

Thanks that worked