Skip to content

Instantly share code, notes, and snippets.

@elect86
Created July 29, 2015 14:09
Show Gist options
  • Save elect86/ce0eea7dd9044f82231c to your computer and use it in GitHub Desktop.
Save elect86/ce0eea7dd9044f82231c to your computer and use it in GitHub Desktop.
public static void checkError(GL3 gl3, String string) {
int error = gl3.glGetError();
if (error != GL3.GL_NO_ERROR) {
System.out.println("error " + error + ", " + string);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment