• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1layout(binding=0) sampler2D t;
2void main()
3{
4    half4 c = sampleLod(t, half2(0), 0);
5    sk_FragColor = c * sampleLod(t, half3(1), 0);
6}
7