mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Add missing EOL at end of file to shaders
This commit is contained in:
parent
17d3f4afa4
commit
a3f544a73e
|
@ -7,4 +7,4 @@ out vec4 FragClr;
|
|||
void main()
|
||||
{
|
||||
FragClr = vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,4 +17,4 @@ void main()
|
|||
VertPos.y += Offset.y + Dir.y * YCount;
|
||||
|
||||
gl_Position = vec4(Pos * VertPos, 0.0, 1.0);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,4 +6,4 @@ out vec4 FragClr;
|
|||
void main()
|
||||
{
|
||||
FragClr = vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,4 +13,4 @@ void main()
|
|||
VertPos.y += Dir.y * (gl_InstanceID+1);
|
||||
|
||||
gl_Position = vec4(Pos * VertPos, 0.0, 1.0);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,4 +12,4 @@ void main()
|
|||
{
|
||||
vec4 tex = textureLod(textureSampler, texCoord, fragLOD);
|
||||
FragClr = tex * vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,4 +25,4 @@ void main()
|
|||
float ty = (inVertexTexCoord.y/(16.0));
|
||||
texCoord = vec2(tx + (inVertexTexRightOrBottom.x == 0 ? F2 : F1), ty + (inVertexTexRightOrBottom.y == 0 ? F2 : F1));
|
||||
fragLOD = LOD;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,4 +12,4 @@ void main()
|
|||
{
|
||||
vec4 tex = textureLod(textureSampler, texCoord, fragLOD);
|
||||
FragClr = tex * vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,4 +29,4 @@ void main()
|
|||
float ty = (inVertexTexCoord.y/(16.0));
|
||||
texCoord = vec2(tx + (inVertexTexRightOrBottom.x == 0 ? F2 : F1), ty + (inVertexTexRightOrBottom.y == 0 ? F2 : F1));
|
||||
fragLOD = LOD;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,4 +14,4 @@ void main()
|
|||
FragClr = tex * vertColor;
|
||||
}
|
||||
else FragClr = vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,4 +14,4 @@ void main()
|
|||
gl_Position = vec4(Pos * vec4(inVertex, 0.0, 1.0), 0.0, 1.0);
|
||||
texCoord = inVertexTexCoord;
|
||||
vertColor = inVertexColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,4 +7,4 @@ out vec4 FragClr;
|
|||
void main()
|
||||
{
|
||||
FragClr = vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,4 +7,4 @@ uniform mat4x2 Pos;
|
|||
void main()
|
||||
{
|
||||
gl_Position = vec4(Pos * vec4(inVertex, 0.0, 1.0), 0.0, 1.0);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,4 +12,4 @@ void main()
|
|||
{
|
||||
vec4 tex = textureLod(textureSampler, texCoord, fragLOD);
|
||||
FragClr = tex * vertColor;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,4 +19,4 @@ void main()
|
|||
float ty = (inVertexTexCoord.y/(16.0));
|
||||
texCoord = vec2(tx + (inVertexTexRightOrBottom.x == 0 ? F2 : F1), ty + (inVertexTexRightOrBottom.y == 0 ? F2 : F1));
|
||||
fragLOD = LOD;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue