Skip to content

Instantly share code, notes, and snippets.

@Morfly
Created May 4, 2022 03:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Morfly/7fd7e4eda78e53d5edb5788ab7d4942a to your computer and use it in GitHub Desktop.
Save Morfly/7fd7e4eda78e53d5edb5788ab7d4942a to your computer and use it in GitHub Desktop.
// triangle/shaders/shader.vert
#version 450
layout(location = 0) out vec3 fragColor;
vec2 positions[3] = vec2[](
vec2(0.0, -0.5),
vec2(0.5, 0.5),
vec2(-0.5, 0.5)
);
vec3 colors[3] = vec3[](
vec3(1.0, 0.0, 0.0),
vec3(0.0, 1.0, 0.0),
vec3(0.0, 0.0, 1.0)
);
void main() {
gl_Position = vec4(positions[gl_VertexIndex], 0.0, 1.0);
fragColor = colors[gl_VertexIndex];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment