mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-04 20:19:15 +01:00
11 lines
187 B
Plaintext
11 lines
187 B
Plaintext
/*
|
|
Fades alpha of image.
|
|
*/
|
|
kernel vec4 alphaFade(sampler image, float Opacity)
|
|
{
|
|
vec4 pix = sample(image, samplerCoord(image));
|
|
pix.a = pix.a * Opacity;
|
|
return pix;
|
|
}
|
|
|