John Kessenich | 6996841 | 2014-08-13 06:37:59 +0000 | [diff] [blame] | 1 | #version 450 core |
John Kessenich | dd56173 | 2017-06-08 10:13:15 -0600 | [diff] [blame] | 2 | layout(local_size_x = 0) in; // ERROR, 0 not allowed |
3 | void main() | ||||
4 | { | ||||
5 | shared float f; // ERROR shared must be global | ||||
6 | } |