diff options
author | iurii plugatarov <[email protected]> | 2024-08-18 19:44:13 +0200 |
---|---|---|
committer | iurii plugatarov <[email protected]> | 2024-08-18 19:44:13 +0200 |
commit | 05aa5178f7b0cf0962d4125a6a0af76a972150f2 (patch) | |
tree | dae1b4c8a6db849ea302947d1bdac632c31e9964 /res/shaders/light_cube.fs | |
parent | 054ed4d4ff5b5cdcd6b813e9821912742ea6a654 (diff) | |
download | funhalla-05aa5178f7b0cf0962d4125a6a0af76a972150f2.tar.gz |
light
Diffstat (limited to '')
-rw-r--r-- | res/shaders/light_cube.fs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/res/shaders/light_cube.fs b/res/shaders/light_cube.fs new file mode 100644 index 0000000..006695a --- /dev/null +++ b/res/shaders/light_cube.fs @@ -0,0 +1,7 @@ +#version 330 core + +out vec4 FragColor; + +void main() { + FragColor = vec4(1.0); +} |