DKGL2 sample codes

texture.frag 679B

12345678910111213141516171819202122232425
  1. #version 450
  2. layout (binding = 1) uniform sampler2D samplerColor;
  3. layout (location = 0) in vec2 inUV;
  4. layout (location = 1) in float inLodBias;
  5. layout (location = 2) in vec3 inNormal;
  6. layout (location = 3) in vec3 inViewVec;
  7. layout (location = 4) in vec3 inLightVec;
  8. layout (location = 0) out vec4 outFragColor;
  9. void main()
  10. {
  11. vec4 color = texture(samplerColor, inUV, inLodBias);
  12. vec3 N = normalize(inNormal);
  13. vec3 L = normalize(inLightVec);
  14. vec3 V = normalize(inViewVec);
  15. vec3 R = reflect(-L, N);
  16. vec3 diffuse = max(dot(N, L), 0.0) * vec3(1.0);
  17. float specular = pow(max(dot(R, V), 0.0), 16.0) * color.a;
  18. outFragColor = vec4(diffuse * color.rgb + specular, 1.0);
  19. }