SPIRV-Cross/reference/shaders/frag/flush_params.frag
2017-08-09 17:06:41 +02:00

31 lines
345 B
GLSL

#version 310 es
precision mediump float;
precision highp int;
struct Structy
{
vec4 c;
};
layout(location = 0) out vec4 FragColor;
void foo2(inout Structy f)
{
f.c = vec4(10.0);
}
Structy foo()
{
Structy param;
foo2(param);
Structy f = param;
return f;
}
void main()
{
Structy s = foo();
FragColor = s.c;
}