Imaging

Started by
0 comments, last by Brother Bob 19 years, 6 months ago
Hi... I'm using the openGL Imaging Subset to make transformations on pixels values by using the COLOR matrix like this: glMatrixMode(GL_COLOR); glLoadMatrixf(m); glMatrixMode(GL_PERSPECTIVE); ..... I was wondering if this tranformations would change the color of texture mapped poligons. does it? thanks in advance
Leo
Advertisement
The color matrix only affects pixel transfers between client and server. That means, it only works for functions like glDrawPixels, glReadPixels, glTexImage and so on.

This topic is closed to new replies.

Advertisement