From 4977d4142d62d22b324efd7e099ba5044a80eb45 Mon Sep 17 00:00:00 2001 From: Anton Chekulaev Date: Mon, 12 Aug 2019 19:58:10 +1000 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 319348a..91cc8a1 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 From 8adf8755bb9a4d795e62dd990fbf341f324014e1 Mon Sep 17 00:00:00 2001 From: Anton Chekulaev Date: Mon, 12 Aug 2019 20:00:31 +1000 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 91cc8a1..ea050ba 100644 --- a/README.md +++ b/README.md @@ -86,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. @@ -115,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); @@ -139,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();