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:
Text File  |  2008-01-23  |  252 b   |  12 lines

  1. /*
  2.  * clamptoalpha.sl -- imager shader that forces Ci to be non-negative
  3.  *    and with each component to greater than the alpha value of the
  4.  *    pixel.
  5.  */
  6.  
  7. imager
  8. k3d_clamptoalpha()
  9. {
  10.   Ci = clamp(Ci, color(0, 0, 0), color(alpha, alpha, alpha));
  11. }
  12.