Skip to content

Instantly share code, notes, and snippets.

@z3t0
Created May 18, 2015 22:04
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 z3t0/ac7dc603d662def22467 to your computer and use it in GitHub Desktop.
Save z3t0/ac7dc603d662def22467 to your computer and use it in GitHub Desktop.
Simple and Complex Shaders
#version 330 core
layout(location = 0) in vec3 position;
void main() {
gl_Position = vec4(position.x, position.y, position.z, 1.0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment