diff --git a/README.md b/README.md index 319348a..ea050ba 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ with lots of improvements, aim on stability and to provide lightweight integrati Work is in progress, some official backends are not stable yet. More effects to be implemented and included in the standard library package. +_Current LibGDX target version is **1.9.8** (this will be changed soon)._ + _If you need GWT support, please [read this section](#gwt-integration)._ # Demo @@ -84,7 +86,7 @@ public class PostProcessorExample extends ApplicationAdapter { private BloomEffect postProcessorEffect; @Override - public void create () { + public void create() { shapeRenderer = new ShapeRenderer(); // PostProcessor is a manager for the effects. @@ -113,7 +115,7 @@ public class PostProcessorExample extends ApplicationAdapter { } @Override - public void render () { + public void render() { // Clean up the screen. Gdx.gl.glClearColor(0f, 0f, 0f, 1f); Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); @@ -137,7 +139,7 @@ public class PostProcessorExample extends ApplicationAdapter { } @Override - public void dispose () { + public void dispose() { // Since PostProcessor manages internal off-screen buffers, // it should be disposed properly. postProcessor.dispose();