mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
16 lines
448 B
Text
16 lines
448 B
Text
uniform sampler2D _RampTex;
|
|
uniform float _RampOffset;
|
|
uniform sampler2D _MainTex;
|
|
void main ()
|
|
{
|
|
vec4 xlat_var_output_1;
|
|
vec4 tmpvar_2;
|
|
tmpvar_2 = texture2D (_MainTex, gl_TexCoord[0].xy);
|
|
vec2 tmpvar_3;
|
|
tmpvar_3.y = 0.5;
|
|
tmpvar_3.x = (dot (tmpvar_2.xyz, vec3(0.22, 0.707, 0.071)) + _RampOffset);
|
|
xlat_var_output_1.xyz = texture2D (_RampTex, tmpvar_3).xyz;
|
|
xlat_var_output_1.w = tmpvar_2.w;
|
|
gl_FragData[0] = xlat_var_output_1;
|
|
}
|
|
|