Just to make @AstroSnail happy :P

This commit is contained in:
Evert Prants 2018-04-15 08:38:30 +03:00
parent fe5f6d5e75
commit 017766a2ff
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
#version 130
#version 110
out vec4 out_Color; // Get rid of out keyword then set version to 110
varying vec3 cardial_color;
void main(void) {
out_Color = vec4(cardial_color.xyz, 1.0f);
gl_FragColor = vec4(cardial_color.xyz, 1.0f);
}