mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
6 lines
146 B
Text
6 lines
146 B
Text
#version 450 core
|
|
layout(local_size_x = 0) in; // ERROR, 0 not allowed
|
|
void main()
|
|
{
|
|
shared float f; // ERROR shared must be global
|
|
}
|