Indentation style changed to Horstmann

This commit is contained in:
2014-04-11 21:53:05 +02:00
parent e70e18a27b
commit f2259f712d
61 changed files with 353 additions and 697 deletions
+2 -4
View File
@@ -8,16 +8,14 @@ layout(location = 1) in vec3 Normal;
layout(location = 2) in vec2 TextureCoord;
out VertexData
{
vec3 Position;
{ vec3 Position;
vec3 Normal;
vec2 TextureCoord;
vec3 ShadowCoord;
} Output;
void main()
{
gl_Position = MVP * vec4(Position, 1.0);
{ gl_Position = MVP * vec4(Position, 1.0);
Output.Position = Position;
Output.Normal = Normal;