2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
|
2022-09-02 19:19:10 +00:00
|
|
|
layout(binding = 0, std430) buffer S_ssbo {
|
2021-11-16 15:15:36 +00:00
|
|
|
int a[];
|
|
|
|
} G;
|
2022-09-02 19:19:10 +00:00
|
|
|
|
2021-11-16 15:15:36 +00:00
|
|
|
void tint_symbol() {
|
2022-02-05 00:20:54 +00:00
|
|
|
uint l1 = uint(G.a.length());
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
2021-11-16 15:15:36 +00:00
|
|
|
void main() {
|
|
|
|
tint_symbol();
|
2022-01-28 22:36:58 +00:00
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|