home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hackers Magazine 57
/
CdHackersMagazineNr57.iso
/
Software
/
Multimedia
/
k3d-setup-0.7.11.0.exe
/
share
/
k3d
/
shaders
/
imager
/
k3d_clamptoalpha.sl
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2008-01-23
|
252 b
|
12 lines
/*
* clamptoalpha.sl -- imager shader that forces Ci to be non-negative
* and with each component to greater than the alpha value of the
* pixel.
*/
imager
k3d_clamptoalpha()
{
Ci = clamp(Ci, color(0, 0, 0), color(alpha, alpha, alpha));
}