Remove trailing spaces

This commit is contained in:
raysan5
2021-10-19 14:57:12 +02:00
parent 719c1551cc
commit fec0ce34c5
80 changed files with 309 additions and 310 deletions

View File

@ -13,14 +13,14 @@ uniform mat4 mvp;
out vec2 fragTexCoord;
out vec4 fragColor;
// NOTE: Add here your custom variables
// NOTE: Add here your custom variables
void main()
{
// Send vertex attributes to fragment shader
fragTexCoord = vertexTexCoord;
fragColor = vertexColor;
// Calculate final vertex position
gl_Position = mvp*vec4(vertexPosition, 1.0);
}