Open gl and alpha channel

how can I change the alpha channel of a texture
(fast)
thanks

At 16:22 28.04.2002 -0400, you wrote:

how can I change the alpha channel of a texture
(fast)
thanks

Well, you enable texturing, you bind the texture, you set a color, you draw
whatever.
So where would you most likely put the alpha? in the color.
As it seems like you use GL_DECAL as texture_application_function, you just
set the color somehow before you start drawing. glColor4f(,,,); is
your friend.
St0fF.=========================================================
!!! COMMODORE – anything else is just a COMPROMISE !!!

St0fF 64 / N30PLA51A - 4 Love, Code, Composition & Design

What’s the difference between a VIC-Chip and a GeForce-GPU?
The Age …

ok thanks but it will be bette if I can change the color of the first texutre
and the 2nd separatly with 2 glColor4f per vertex (in order do make a
gradient :))
thanks !!