blob: 950bbd75248f28aa70c976627c16820985b7b22c [file] [log] [blame]
John Kessenich71351de2016-06-08 12:50:56 -06001void foo1() {}
2void foo2(void) {}
3
John Kessenicha3051662016-09-02 19:13:36 -06004void PixelShaderFunction(float4 input) : COLOR0
John Kessenich71351de2016-06-08 12:50:56 -06005{
6 foo1();
7 foo2();
John Kessenicha3051662016-09-02 19:13:36 -06008 return;
John Kessenich71351de2016-06-08 12:50:56 -06009}