xref
: /
third_party
/
glslang
/
Test
/
spv.exportFunctions.comp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/glslang/Test/
1
#version 450
2
3
float add(float a, float b) {
4
return a + b;
5
}
6
7
int foo() {
8
return 0;
9
}
10