bgfx/3rdparty/glslang/Test/spv.functionNestedOpaque.vert
Branimir Karadžić 160a1a798e Updated glslang.
2017-02-24 19:28:48 -08:00

27 lines
254 B
GLSL
Executable File

#version 450
uniform struct S {
sampler2D s;
} si;
void foo(sampler2D t)
{
texture(t, vec2(0.5));
}
void barc(const S p)
{
foo(p.s);
}
void bar(S p)
{
foo(p.s);
}
void main()
{
barc(si);
bar(si);
}