Fix comment indentation

pull/6/head
Tristan Daniël Maat 2022-08-12 22:59:50 +01:00
parent e64644e0af
commit ed80030d3d
Signed by: tlater
GPG Key ID: 49670FD774E43268
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#version 300 es
//FRAGMENT SHADER
// FRAGMENT SHADER
//
// Basic fragment shader, just passes along colors, we don't do much
// with textures or anything else complex in this project.

View File

@ -1,8 +1,8 @@
#version 300 es
// VERTEX SHADER
//
// Takes vertices of a unit cube, scales them up along Y according to
// aHeight, and colors them with basic diffuse shading.
// Takes vertices of a unit cube, scales them up along Y according to
// aHeight, and colors them with basic diffuse shading.
#define CLEAR_COLOR vec4(0.0, 0.0, 0.0, 1.0)
#define BASE_COLOR vec3(0.6, 0.819607843137, 0.807843137255)