mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-24 03:39:51 +00:00
dd56173d04
This implements Khronos-private specification bug 16130.
7 lines
146 B
Plaintext
7 lines
146 B
Plaintext
#version 450 core
|
|
layout(local_size_x = 0) in; // ERROR, 0 not allowed
|
|
void main()
|
|
{
|
|
shared float f; // ERROR shared must be global
|
|
}
|