mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
0af5e3e346
* We add an option to reflect inputs from other stages than vertex, if only a later subset of the stages is linked into the program.
9 lines
81 B
GLSL
9 lines
81 B
GLSL
#version 440 core
|
|
|
|
in float inval;
|
|
|
|
void main()
|
|
{
|
|
float f = inval;
|
|
}
|