diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2020-01-24 01:56:40 -0600 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2020-01-24 01:56:40 -0600 |
commit | cdab0086ec6eae662a9c40503f302f391141fbc0 (patch) | |
tree | 077f43fdc2a371bcab8ecac12a8b78d3ac035f86 /src/fs.glsl |
example
Diffstat (limited to 'src/fs.glsl')
-rw-r--r-- | src/fs.glsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/fs.glsl b/src/fs.glsl new file mode 100644 index 0000000..d2dd6bb --- /dev/null +++ b/src/fs.glsl @@ -0,0 +1,7 @@ +in vec3 v_color; + +out vec3 frag_color; + +void main() { + frag_color = v_color; +} |