mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-29 02:55:36 -05:00
15 lines
469 B
Text
15 lines
469 B
Text
uniform sampler2D _ScratchTex;
|
|
uniform sampler2D _MainTex;
|
|
uniform vec4 _Intensity;
|
|
uniform sampler2D _GrainTex;
|
|
void main ()
|
|
{
|
|
vec4 col;
|
|
vec4 tmpvar_1;
|
|
tmpvar_1 = texture2D (_MainTex, gl_TexCoord[0].xy);
|
|
col = tmpvar_1;
|
|
col.xyz = (tmpvar_1.xyz + (((texture2D (_GrainTex, gl_TexCoord[1].xy).xyz * 2.0) - 1.0) * _Intensity.x));
|
|
col.xyz = (col.xyz + (((texture2D (_ScratchTex, gl_TexCoord[2].xy).xyz * 2.0) - 1.0) * _Intensity.y));
|
|
gl_FragData[0] = col;
|
|
}
|
|
|