diff options
author | HampusM <hampus@hampusmat.com> | 2023-11-12 22:38:52 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-11-12 22:57:19 +0100 |
commit | 8d821588cd4f51d4ae9c4ef52d45c0af0e1ce9e5 (patch) | |
tree | ed1b0dd30e801b9a70537b9806a445e4212978b3 /engine/fragment-light.glsl | |
parent | 67023d6a095f457a2579367d59d13c6c804e7108 (diff) |
feat(engine): add basic flat lighting
Diffstat (limited to 'engine/fragment-light.glsl')
-rw-r--r-- | engine/fragment-light.glsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engine/fragment-light.glsl b/engine/fragment-light.glsl new file mode 100644 index 0000000..0d46bea --- /dev/null +++ b/engine/fragment-light.glsl @@ -0,0 +1,7 @@ +#version 330 core +out vec4 FragColor; + +void main() +{ + FragColor = vec4(1.0); +} |