Skip to content

Instantly share code, notes, and snippets.

@sugiartocokrowibowo
Last active August 29, 2015 14:14
Show Gist options
  • Save sugiartocokrowibowo/d908275a19776104b215 to your computer and use it in GitHub Desktop.
Save sugiartocokrowibowo/d908275a19776104b215 to your computer and use it in GitHub Desktop.
CG[LWJGL0017] || Shader Dasar
package latihanShader00;
import org.lwjgl.opengl.Display;
public class TutorialLWJGL0017 {
private void createWindow() {
//
}
private void initializeGL() {
//
}
public void pollInput() {
//
}
private void updateLogic() {
//
}
private void renderGL() {
//
}
private void constructVertexArrayObject(){
//
}
public void run() {
//
}
private void cleanup() {
Display.destroy();
}
/**
* @param args
*/
public static void main(String[] args) {
TutorialLWJGL0017 tutorial = new TutorialLWJGL0017();
tutorial.run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment