blob: 574d15eea44f097c6075d2a13f32f14ee1d36419 [file] [log] [blame]
layout(binding=0) sampler2D t;
void main()
{
half4 c = sample(t, half2(0));
sk_FragColor = c * sample(t, half3(1));
}