7 lines
140 B
Plaintext
7 lines
140 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
|
||
|
}
|