0b24cbc7ae
TODO: find model with small amount of verticles
55 lines
1.4 KiB
GLSL
55 lines
1.4 KiB
GLSL
#version 430 core
|
|
|
|
layout (location = 0) out vec4 FragColor;
|
|
layout (location = 1) out vec4 BrightColor;
|
|
|
|
struct PointLight {
|
|
vec3 position;
|
|
vec3 color;
|
|
float intensity;
|
|
};
|
|
|
|
#define MAX_POINT_LIGHTS 16
|
|
|
|
uniform vec3 cameraPos;
|
|
uniform sampler2D diffuseTexture;
|
|
uniform sampler2D normalTexture;
|
|
uniform PointLight pointLights[MAX_POINT_LIGHTS];
|
|
uniform int LightsCount;
|
|
|
|
in vec3 interpNormal;
|
|
in vec3 fragPos;
|
|
in vec2 vTexCoord;
|
|
|
|
|
|
|
|
void main()
|
|
{
|
|
vec3 fragColor = vec3(0,0,0);
|
|
vec4 textureColor = texture2D(diffuseTexture, vTexCoord);
|
|
vec3 ambient = vec3(0.2) * textureColor.xyz;
|
|
vec3 normal = normalize(interpNormal);
|
|
for(int i = 0; i < LightsCount; i++)
|
|
{
|
|
vec3 lightDir = normalize(pointLights[i].position - fragPos);
|
|
|
|
vec3 V = normalize(cameraPos-fragPos);
|
|
vec3 R = reflect(-lightDir,normal);
|
|
|
|
float dist = distance(fragPos, pointLights[i].position);
|
|
float distance = (1/dist) * (1/dist);
|
|
|
|
float spec = pow(max(0,dot(R,V)),2);
|
|
float diff = max(0,dot(normal,normalize(lightDir)));
|
|
|
|
vec3 diffuse = pointLights[i].color * diff * distance * pointLights[i].intensity;
|
|
vec3 specular = spec * pointLights[i].color * (pointLights[i].intensity/(dist*2));
|
|
|
|
vec3 texture = vec3(textureColor.x, textureColor.y, textureColor.z); // * pointLights[i].color;
|
|
fragColor += texture*diffuse+vec3(1)*specular;
|
|
}
|
|
|
|
BrightColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
FragColor = vec4(fragColor+ambient,1.0);
|
|
}
|