2014-03-27 01:01:22 -04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2015-01-02 17:43:11 -05:00
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
2014-03-27 01:01:22 -04:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
|
|
|
|
2015-10-25 01:34:11 -04:00
|
|
|
SAMPLER2D(s_texColor0, 0);
|
|
|
|
SAMPLER2D(s_texColor1, 1);
|
2014-03-27 01:01:22 -04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2015-10-25 01:34:11 -04:00
|
|
|
vec4 accum = texture2D(s_texColor0, v_texcoord0);
|
|
|
|
float opacity = texture2D(s_texColor1, v_texcoord0).x;
|
2014-03-27 01:01:22 -04:00
|
|
|
gl_FragColor = vec4(accum.xyz / clamp(accum.w, 1e-4, 5e4), opacity);
|
|
|
|
}
|