From 48ec3a869029bad34773516df193519a4fe9103a Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 15 Apr 2023 00:08:20 +0100 Subject: Rename lots of shader files Names and paths still not perfect, but better and the weird name missuse is gone --- gfx/gl/shaders/lighting.fs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 gfx/gl/shaders/lighting.fs (limited to 'gfx/gl/shaders/lighting.fs') 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; +} -- cgit v1.2.3