diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-15 00:08:20 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-15 00:08:20 +0100 |
commit | 48ec3a869029bad34773516df193519a4fe9103a (patch) | |
tree | 9539b9a849a2bf5dbb7c407b754d7fae2fcbcfd7 /gfx/gl/shaders/lighting.fs | |
parent | Merge branch 'assimp' (diff) | |
download | ilt-48ec3a869029bad34773516df193519a4fe9103a.tar.bz2 ilt-48ec3a869029bad34773516df193519a4fe9103a.tar.xz ilt-48ec3a869029bad34773516df193519a4fe9103a.zip |
Rename lots of shader files
Names and paths still not perfect, but better and the weird name missuse is gone
Diffstat (limited to 'gfx/gl/shaders/lighting.fs')
-rw-r--r-- | gfx/gl/shaders/lighting.fs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gfx/gl/shaders/lighting.fs b/gfx/gl/shaders/lighting.fs new file mode 100644 index 0000000..4646b75 --- /dev/null +++ b/gfx/gl/shaders/lighting.fs @@ -0,0 +1,18 @@ +#version 330 core +#extension GL_ARB_shading_language_420pack : enable + +out vec3 FragColor; + +in vec2 TexCoords; + +layout(binding = 2) uniform sampler2D gAlbedoSpec; +layout(binding = 3) uniform sampler2D gIllumination; + +void +main() +{ + const vec3 Albedo = texture(gAlbedoSpec, TexCoords).rgb; + const vec3 Illumination = texture(gIllumination, TexCoords).rgb; + + FragColor = Albedo * Illumination; +} |