vertex.vs 634 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 viewMatrix;
  7. uniform mat4 modelMatrix;
  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 useColor;
  19. uniform bool useLight;
  20. out vec2 tc;
  21. out vec2 loc;
  22. out vec4 vColor;
  23. void main(void)
  24. {
  25. loc = pos;
  26. gl_Position = viewMatrix * modelMatrix * vec4(pos, depth, 1.0);
  27. tc = tex;
  28. vColor = vertexColor;
  29. }