blob: 316674dd7cab0fb81e71660b1e140b42ee4c3e15 [file] [log] [blame]
John Kessenich69968412014-08-13 06:37:59 +00001#version 450 core
John Kessenichdd561732017-06-08 10:13:15 -06002layout(local_size_x = 0) in; // ERROR, 0 not allowed
Chow891ec092019-12-25 17:08:48 +08003
4layout(binding=10000) uniform atomic_uint; // ERROR
5
John Kessenichdd561732017-06-08 10:13:15 -06006void main()
7{
8 shared float f; // ERROR shared must be global
9}