John Kessenich | 71351de | 2016-06-08 12:50:56 -0600 | [diff] [blame] | 1 | void foo1() {} |
2 | void foo2(void) {} | ||||
3 | |||||
John Kessenich | a305166 | 2016-09-02 19:13:36 -0600 | [diff] [blame] | 4 | void PixelShaderFunction(float4 input) : COLOR0 |
John Kessenich | 71351de | 2016-06-08 12:50:56 -0600 | [diff] [blame] | 5 | { |
6 | foo1(); | ||||
7 | foo2(); | ||||
John Kessenich | a305166 | 2016-09-02 19:13:36 -0600 | [diff] [blame] | 8 | return; |
John Kessenich | 71351de | 2016-06-08 12:50:56 -0600 | [diff] [blame] | 9 | } |