PlanetEditor/grk/cw 6/shaders/shader_sun.frag

23 lines
421 B
GLSL
Raw Normal View History

2023-12-18 16:15:08 +01:00
#version 430 core
float AMBIENT = 0.1;
uniform vec3 lightPos;
in vec3 vecNormal;
in vec3 worldPos;
2024-01-14 19:42:19 +01:00
in vec2 vtc;
2024-01-17 22:01:14 +01:00
2023-12-18 16:15:08 +01:00
out vec4 outColor;
uniform sampler2D colorTexture;
void main()
{
2024-01-14 19:42:19 +01:00
vec3 lightDir = normalize(lightPos - worldPos);
2023-12-18 16:15:08 +01:00
vec3 normal = normalize(vecNormal);
2024-01-14 23:12:02 +01:00
//float diffuse = max(0, dot(normal, lightDir));
2023-12-18 16:15:08 +01:00
2024-01-14 19:42:19 +01:00
vec4 textureColor = texture2D(colorTexture, vtc);
2024-01-14 23:12:02 +01:00
outColor = vec4(vec3(textureColor) * 1.5, 1.0);
2024-01-17 22:01:14 +01:00
}