Ei kuvausta

ground.frag 843B

12345678910111213141516171819202122232425262728
  1. #version 450
  2. #extension GL_ARB_separate_shader_objects : enable
  3. #extension GL_ARB_shading_language_420pack : enable
  4. layout (binding = 2) uniform sampler2D samplerColor;
  5. layout (location = 0) in vec3 inNormal;
  6. layout (location = 1) in vec3 inColor;
  7. layout (location = 2) in vec2 inUV;
  8. layout (location = 3) in vec3 inViewVec;
  9. layout (location = 4) in vec3 inLightVec;
  10. layout (location = 0) out vec4 outFragColor;
  11. void main()
  12. {
  13. // Last array layer is terrain tex
  14. vec4 color = texture(samplerColor, inUV);
  15. vec3 N = normalize(inNormal);
  16. vec3 L = normalize(inLightVec);
  17. vec3 V = normalize(inViewVec);
  18. vec3 R = reflect(-L, N);
  19. vec3 ambient = vec3(0.65);
  20. vec3 diffuse = max(dot(N, L), 0.0) * inColor;
  21. vec3 specular = pow(max(dot(R, V), 0.0), 16.0) * vec3(0.1);
  22. outFragColor = vec4((ambient + diffuse) * color.rgb + specular, 1.0);
  23. }