No Description

texture3d.frag 770B

12345678910111213141516171819202122232425262728
  1. #version 450
  2. #extension GL_ARB_separate_shader_objects : enable
  3. #extension GL_ARB_shading_language_420pack : enable
  4. layout (binding = 1) uniform sampler3D samplerColor;
  5. layout (location = 0) in vec3 inUV;
  6. layout (location = 1) in float inLodBias;
  7. layout (location = 2) in vec3 inNormal;
  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. vec4 color = texture(samplerColor, inUV);
  14. vec3 N = normalize(inNormal);
  15. vec3 L = normalize(inLightVec);
  16. vec3 V = normalize(inViewVec);
  17. vec3 R = reflect(-L, N);
  18. vec3 diffuse = max(dot(N, L), 0.0) * vec3(1.0);
  19. float specular = pow(max(dot(R, V), 0.0), 16.0) * color.r;
  20. outFragColor = vec4(diffuse * color.r + specular, 1.0);
  21. }