Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
camenduru
/
ncnn
like
1
Model card
Files
Files and versions
xet
Community
main
ncnn
/
glslang
/
Test
/
310implicitSizeArrayError.vert
camenduru
thanks to ncnn ❤
be903e2
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
144 Bytes
#version 310 es
layout
(
binding
=
0
)
uniform
Block {
highp
int
a[];
} uni;
layout
(
location
=
0
)
out
highp
int
o;
void
main() {
o = uni.a[
2
];
}