mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-13 21:50:06 +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
|
|
}
|