No Description

skybox.vert 437B

123456789101112131415161718192021222324252627
  1. #version 450
  2. #extension GL_ARB_separate_shader_objects : enable
  3. #extension GL_ARB_shading_language_420pack : enable
  4. layout (location = 0) in vec3 inPos;
  5. layout (binding = 0) uniform UBO
  6. {
  7. mat4 projection;
  8. mat4 view;
  9. mat4 model;
  10. } ubo;
  11. layout (location = 0) out vec3 outUVW;
  12. out gl_PerVertex
  13. {
  14. vec4 gl_Position;
  15. };
  16. void main()
  17. {
  18. outUVW = inPos;
  19. gl_Position = ubo.projection * ubo.view * ubo.model * vec4(inPos.xyz, 1.0);
  20. }