Skip to content

Instantly share code, notes, and snippets.

@fiftytwo
Last active August 29, 2015 14:23
Show Gist options
  • Save fiftytwo/94b7132f1264849cc791 to your computer and use it in GitHub Desktop.
Save fiftytwo/94b7132f1264849cc791 to your computer and use it in GitHub Desktop.
// In interface definition
CGPoint *vertices;
CGPoint *coordinates;
// In drawing function
glVertexAttribPointer(kCCVertexAttrib_Position, 2, GL_FLOAT, GL_FALSE, 0, vertices);
glVertexAttribPointer(kCCVertexAttrib_TexCoords, 2, GL_FLOAT, GL_FALSE, 0, coordinates);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment