설명 없음

indirectdraw.frag 719B

123456789101112131415161718192021222324252627282930
  1. #version 450
  2. #extension GL_ARB_separate_shader_objects : enable
  3. #extension GL_ARB_shading_language_420pack : enable
  4. layout (binding = 1) uniform sampler2DArray samplerArray;
  5. layout (location = 0) in vec3 inNormal;
  6. layout (location = 1) in vec3 inColor;
  7. layout (location = 2) in vec3 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. vec4 color = texture(samplerArray, inUV);
  14. if (color.a < 0.5)
  15. {
  16. discard;
  17. }
  18. vec3 N = normalize(inNormal);
  19. vec3 L = normalize(inLightVec);
  20. vec3 ambient = vec3(0.65);
  21. vec3 diffuse = max(dot(N, L), 0.0) * inColor;
  22. outFragColor = vec4((ambient + diffuse) * color.rgb, 1.0);
  23. }