• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1### Compilation failed:
2
3error: 10: layout qualifier 'rgba32f' is not permitted here
4layout(vulkan, rgba32f, input_attachment_index=0,
5^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
6error: 12: layout qualifier 'texture' is not permitted here
7layout(vulkan, rgba32f, texture=0) readonly texture2D rtexture2;   // invalid (no set/binding)
8^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9error: 13: layout qualifier 'texture' is not permitted here
10layout(vulkan, rgba32f, texture=0) writeonly texture2D wtexture2;  // invalid (no set/binding)
11^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12error: 14: storage textures must declare a pixel format
13layout(vulkan, set=0, binding=0) readonly texture2D rtexture3;     // invalid (no pixformat)
14^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15error: 15: storage textures must declare a pixel format
16layout(vulkan, set=0, binding=0) writeonly texture2D wtexture3;    // invalid (no pixformat)
17^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18error: 16: layout qualifier 'texture' is not permitted here
19layout(vulkan, texture=0, sampler=0) sampler2D sampler2;           // invalid
20^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21error: 16: layout qualifier 'sampler' is not permitted here
22layout(vulkan, texture=0, sampler=0) sampler2D sampler2;           // invalid
23^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
247 errors
25