Gelero
08-23-2001, 05:26 AM
hey guys...
how can i make any color of my tga texture transparent ???
thanks in advance...
qwert
08-23-2001, 05:43 AM
You have to turn on blending, I think.
maybe something like this:
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_DEPTH_TEST);
But with blended trinagles you should proceed the following:
1. draw all non-transparent primitives
2. code above
3. draw your transparent primitives depth-sorted(furthest first, nearest last)
if primitives are texture-mapped or not doesn't matter.
qwert
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.