diff options
author | Andreas Grois <andi@grois.info> | 2018-03-17 17:51:19 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2018-03-17 17:51:19 +0100 |
commit | b05e87dc5004f5badc02508570ddc55f31b451cc (patch) | |
tree | 98448778398e9d452b8ebc686f16d83e8211e323 /BuddhaTest/Shaders/BuddhaVertex.glsl | |
parent | 5a9c8599daee7d1d569ade3647d0078e56123c7a (diff) |
Correct line endings.
Diffstat (limited to 'BuddhaTest/Shaders/BuddhaVertex.glsl')
-rw-r--r-- | BuddhaTest/Shaders/BuddhaVertex.glsl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/BuddhaTest/Shaders/BuddhaVertex.glsl b/BuddhaTest/Shaders/BuddhaVertex.glsl index 686eeb4..58ae10d 100644 --- a/BuddhaTest/Shaders/BuddhaVertex.glsl +++ b/BuddhaTest/Shaders/BuddhaVertex.glsl @@ -1,11 +1,11 @@ -#version 430 core
-
-layout(location = 0) in vec3 vertexPosition_modelspace;
-
-out vec2 uv;
-
-void main(){
- gl_Position.xyz = vertexPosition_modelspace;
- gl_Position.w = 1.0;
- uv = gl_Position.xy;
+#version 430 core + +layout(location = 0) in vec3 vertexPosition_modelspace; + +out vec2 uv; + +void main(){ + gl_Position.xyz = vertexPosition_modelspace; + gl_Position.w = 1.0; + uv = gl_Position.xy; }
\ No newline at end of file |