Skip to content

Instantly share code, notes, and snippets.

@Nehon
Last active June 1, 2019 21:45
Show Gist options
  • Save Nehon/280ca8d3cedeffdbe3073918777e582a to your computer and use it in GitHub Desktop.
Save Nehon/280ca8d3cedeffdbe3073918777e582a to your computer and use it in GitHub Desktop.
using func = void(*)(GLuint);
const func bindVaoFunctions[] {emulateBindVAO, glBindVertexArray};
...
#ifdef __EMSCRIPTEN__
const int hasVAO = getWebglCaps().hasVAO;
bindVaoFunction[hasVao](vao);
#else
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment