1layout(binding=0) sampler2D t; 2void main() 3{ 4 half4 c = sample(t, half2(0)); 5 sk_FragColor = c * sample(t, half3(1)); 6} 7