summaryrefslogtreecommitdiff
path: root/tests/test.glsl
blob: 6e9c70c2eb36f5a35a57902eae632b477371833d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void main() {
    gl_Position = vec4(0.0);
}

vec3 add_vectors(vec3 a, vec3 b) {
    return a + b;
}

struct Point {
    vec3 position;
    vec3 color;
};