fragment.frag.glsl 148 B

12345678
  1. #version 450
  2. layout(location = 0) out vec4 outColor;
  3. layout(location = 0) in vec3 fragColor;
  4. void main() {
  5. outColor = vec4(fragColor, 1.0);
  6. }