My code works for everything except specular component.

glEnable(GL_COLOR_SUM);
...
glEnableClientState(GL_COLOR_ARRAY);
glColorPointer(4, GL_UNSIGNED_BYTE, 0, color);
glEnableClientState(GL_SECONDARY_COLOR_ARRAY);
glSecondaryColorPointer(3, GL_UNSIGNED_BYTE, 0, specular);
...
glDrawArrays(D3DPT_TRIANGLELIST, 0, 2);

It seems to ignore specular, but color, texture co-ordinates, positions, and so on are all completely fine.

This is NOT using lights and materials. Fixed-vertex pipeline. Shaders are not an option at this point, unfortunately.

glGetError() reports no errors at any point either.

link|improve this question

75% accept rate
"This is NOT using lights and materials." If you're not using lights and materials, then the secondary color will only be used as part of your texture environment functions. So... what are they. What glTexEnv functions do you call? – Nicol Bolas Nov 25 '11 at 6:58
I'm using the defaults... If I must change glTexEnv appropriately, what would they be changed to? And then what is the use of GL_COLOR_SUM mentioned in documentation? – PhoenixX_2 Nov 25 '11 at 7:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.