<<< Shader Data | Index | GL_POINTS >>> |
We typically create a single batch of vertices to draw
We generally set up all "features" before drawing anything
State machine mentality
We always have vertices, but we can render them in 7 different ways
GL_POINTS GL_LINES GL_LINE_STRIP GL_LINE_LOOP GL_TRIANGLES // we'll be using these a lot!! GL_TRIANGLE_STRIP GL_TRIANGLE_FAN
<<< Shader Data | Index | GL_POINTS >>> |