hlsl.void.frag 122 B

123456789
  1. void foo1() {}
  2. void foo2(void) {}
  3. void PixelShaderFunction(float4 input) : COLOR0
  4. {
  5. foo1();
  6. foo2();
  7. return;
  8. }