Starting to use NLog for logging.

This commit is contained in:
2017-02-27 16:37:26 -05:00
parent 5a30be5435
commit 180d714995
9 changed files with 3120 additions and 111 deletions

View File

@@ -5,10 +5,9 @@ in float light;
uniform sampler2D tex;
void main ()
void main ()l
{
vec4 color = texture(tex, vcoord);
color.w = 1;
color.xyz *= light;
gl_FragColor = clamp(color, 0, 1);
}