mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-01 07:01:12 +00:00
8 lines
112 B
GLSL
8 lines
112 B
GLSL
void foo1() {}
|
|
void foo2(void) {}
|
|
|
|
float4 PixelShaderFunction(float4 input) : COLOR0
|
|
{
|
|
foo1();
|
|
foo2();
|
|
} |