const string fragmentCode = @"
// the version of glsl
#version 330 core
// i think out means to output something and out_color is the name of a variable?
out vec4 out_color;
// main function
void main()
{
// is vec4 an RGBA value with the color?
out_color = vec4(1.0, 0.5, 0.2, 1.0);
}
";
const string fragmentCode = @"
// the version of glsl
#version 330 core
// i think out means to output something and out_color is the name of a variable?
out vec4 out_color;
// main function
void main()
{
// is vec4 an RGBA value with the color?
out_color = vec4(1.0, 0.5, 0.2, 1.0);
}
";