14 lines
186 B
Plaintext
14 lines
186 B
Plaintext
|
#version 450
|
||
|
|
||
|
layout (local_size_x = 8) in;
|
||
|
layout (set = 0, binding = 0) buffer outBuffer
|
||
|
{
|
||
|
uint squares[];
|
||
|
};
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
uint n = gl_GlobalInvocationID.x;
|
||
|
squares[n] = n * n;
|
||
|
}
|