• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1layout(location = 0) in float stageInput;
2in foo {
3    layout(location = 1) float stageInputInBlock;
4};
5
6void main() {
7    stageInput = 5;
8    stageInputInBlock = 6;
9}
10
11/*%%*
12cannot modify pipeline input variable 'stageInput'
13cannot modify pipeline input variable 'stageInputInBlock'
14*%%*/
15