mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
25 lines
310 B
GLSL
25 lines
310 B
GLSL
float4 fun0()
|
|
{
|
|
return 1.0f;
|
|
}
|
|
|
|
uint fun2(float4 col)
|
|
{
|
|
return 7;
|
|
}
|
|
|
|
float4 fun4(uint id1, uniform uint id2)
|
|
{
|
|
return id1 * id2;
|
|
}
|
|
|
|
float4 fun1(int index)
|
|
{
|
|
uint entityId = fun2(fun0());
|
|
return fun4(entityId, entityId);
|
|
}
|
|
|
|
int main() : SV_TARGET
|
|
{
|
|
return fun1;
|
|
} |