diff options
Diffstat (limited to 'shaders/lightsource.fsh')
-rw-r--r-- | shaders/lightsource.fsh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shaders/lightsource.fsh b/shaders/lightsource.fsh new file mode 100644 index 0000000..1bd96c6 --- /dev/null +++ b/shaders/lightsource.fsh @@ -0,0 +1,7 @@ +#version 330 core +out vec4 FragColor; + +void main() +{ + FragColor = vec4(1.0); +} |