Last active
August 29, 2015 14:14
-
-
Save sugiartocokrowibowo/d908275a19776104b215 to your computer and use it in GitHub Desktop.
CG[LWJGL0017] || Shader Dasar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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