lib_no_alloca.h 76 B

123456789
  1. float2 test(float2 a) {
  2. float2 b = a;
  3. b.y = sin(a.y);
  4. return b;
  5. }