vertex.vs 738 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #version 430
  2. layout (location = 0) in vec2 pos;
  3. layout (location = 1) in vec2 tex;
  4. layout (location = 2) in vec4 vertexColor;
  5. layout (binding = 0) uniform sampler2D samp;
  6. uniform mat4 matrix;
  7. uniform vec2 camera;
  8. uniform float depth;
  9. uniform vec3 ambientLight;
  10. struct Light
  11. {
  12. vec2 pos;
  13. float strength;
  14. vec3 color;
  15. };
  16. uniform Light lights[32];
  17. uniform bool useTexture;
  18. uniform bool useLight;
  19. uniform bool useCameraOffset;
  20. out vec2 tc;
  21. out vec2 loc;
  22. out vec4 vColor;
  23. void main(void)
  24. {
  25. loc = pos;
  26. if(useCameraOffset)
  27. {
  28. gl_Position = matrix * vec4(pos - camera, depth, 1.0);
  29. }
  30. else
  31. {
  32. gl_Position = matrix * vec4(pos, depth, 1.0);
  33. }
  34. tc = tex;
  35. vColor = vertexColor;
  36. }