Fix comment indentation
This commit is contained in:
parent
e64644e0af
commit
ed80030d3d
|
@ -1,5 +1,5 @@
|
||||||
#version 300 es
|
#version 300 es
|
||||||
//FRAGMENT SHADER
|
// FRAGMENT SHADER
|
||||||
//
|
//
|
||||||
// Basic fragment shader, just passes along colors, we don't do much
|
// Basic fragment shader, just passes along colors, we don't do much
|
||||||
// with textures or anything else complex in this project.
|
// with textures or anything else complex in this project.
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#version 300 es
|
#version 300 es
|
||||||
// VERTEX SHADER
|
// VERTEX SHADER
|
||||||
//
|
//
|
||||||
// Takes vertices of a unit cube, scales them up along Y according to
|
// Takes vertices of a unit cube, scales them up along Y according to
|
||||||
// aHeight, and colors them with basic diffuse shading.
|
// aHeight, and colors them with basic diffuse shading.
|
||||||
|
|
||||||
#define CLEAR_COLOR vec4(0.0, 0.0, 0.0, 1.0)
|
#define CLEAR_COLOR vec4(0.0, 0.0, 0.0, 1.0)
|
||||||
#define BASE_COLOR vec3(0.6, 0.819607843137, 0.807843137255)
|
#define BASE_COLOR vec3(0.6, 0.819607843137, 0.807843137255)
|
||||||
|
|
Reference in a new issue