0
votes

Is it possible to draw a RGB texture as grayscale without using fragment shaders, using only fixed pipeline openGL?

Otherwise I'd have to create two versions of texture, one in color and one in black and white.

2

2 Answers

1
votes

I don't know how to do this with an RGB texture and the fixed function pipeline.

If you create the texture from RGB source data but specify the internal format as GL_LUMINANCE, OpenGL will convert the color data into greyscale for you. Use the standard white material and MODULATE mode.

Hope this helps.

0
votes

No. Texture environment combiners are not capable of performing a dot product without doing the scale/bias operation. That is, it always pretends that [0, 1] values are encoded as [-1, 1] values. Since you can't turn that off, you can't do a proper dot product.