Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aib/lwjgl-shader


https://github.com/aib/lwjgl-shader

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

These are a simple set of wrapper classes to make working with shaders in LWJGL
(Minecraft) easier. They should be easy to use:

try {
myShader = new Program()
.attachShader(new Shader(GL20.GL_VERTEX_SHADER, new FileReader("myShader.vert")).compile())
.attachShader(new Shader(GL20.GL_FRAGMENT_SHADER, new FileReader("myShader.frag")).compile())
.link();
} catch (FileNotFoundException e) {
...
} catch (ShaderException e) {
...
}