• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1void inc1(out float x)  { x++; }
2void inc4(out float4 x) { x += half4(1); }
3
4void test_a() { inc1(0); }
5void test_b() { inc4(float4(0)); }
6void test_c() { inc1(sqrt(1)); }
7