SPIRV-Cross/shaders/frag/flush_params.frag

28 lines
283 B
GLSL
Raw Normal View History

2016-03-02 17:09:16 +00:00
#version 310 es
precision mediump float;
layout(location = 0) out vec4 FragColor;
struct Structy
{
vec4 c;
};
void foo2(out Structy f)
{
f.c = vec4(10.0);
}
Structy foo()
{
Structy f;
foo2(f);
return f;
}
void main()
{
Structy s = foo();
FragColor = s.c;
}