1
0
mirror of synced 2025-11-09 12:57:13 +00:00

initial commit

This commit is contained in:
Tom Gowan
2019-04-26 13:00:38 +10:00
commit 0755b4f807
16 changed files with 651 additions and 0 deletions

13
tests/shaders/frag2.glsl Normal file
View File

@@ -0,0 +1,13 @@
#version 450
layout(location = 0) in vec4 cool;
layout(location = 1) in vec2 yep;
layout(location = 2) in float monkey;
layout(location = 0) out vec4 f_color;
void main() {
vec4 t = cool;
t.yw += yep;
t.x -= monkey;
f_color = t;
}