1cb93a386Sopenharmony_ci/*#pragma settings Version110 Sharpen*/
2cb93a386Sopenharmony_ci
3cb93a386Sopenharmony_ciuniform sampler1D one;
4cb93a386Sopenharmony_ciuniform sampler2D two;
5cb93a386Sopenharmony_ci
6cb93a386Sopenharmony_civoid main() {
7cb93a386Sopenharmony_ci    float4 a = sample(one, 0);
8cb93a386Sopenharmony_ci    float4 b = sample(two, float2(0));
9cb93a386Sopenharmony_ci    float4 c = sample(one, float2(0));
10cb93a386Sopenharmony_ci    float4 d = sample(two, float3(0));
11cb93a386Sopenharmony_ci    sk_FragColor = half4(half(a.x), half(b.x), half(c.x), half(d.x));
12cb93a386Sopenharmony_ci}
13