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