commit 81b1577bcdfc1688610443bcb0e0a913c533d6a4
Author: Leszek Koltunski <leszek@distoretedandroid.org>
Date:   Thu Jun 8 17:12:31 2017 +0100

    Progress with support for Effect classes. Last error in the library before it compiles!

diff --git a/src/main/java/org/distorted/library/main/DistortedScreen.java b/src/main/java/org/distorted/library/main/DistortedScreen.java
index be516ea..551cc2a 100644
--- a/src/main/java/org/distorted/library/main/DistortedScreen.java
+++ b/src/main/java/org/distorted/library/main/DistortedScreen.java
@@ -30,6 +30,7 @@ import android.graphics.Paint;
 import android.opengl.GLES30;
 import android.opengl.GLSurfaceView;
 
+import org.distorted.library.effect.MatrixEffectMove;
 import org.distorted.library.type.Static3D;
 
 /**
@@ -53,6 +54,7 @@ public class DistortedScreen extends DistortedOutputSurface
   private long lastTime=0;
   private long[] durations;
   private int currDuration;
+  private static MatrixEffectMove mMoveEffect = new MatrixEffectMove( new Static3D(5,5,0) );
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 // here we don't manage underlying OpenGL assets ourselves
@@ -130,7 +132,7 @@ public class DistortedScreen extends DistortedOutputSurface
     fpsTexture.setTexture(fpsBitmap);
     fpsCanvas = new Canvas(fpsBitmap);
     fpsEffects = new DistortedEffects();
-    fpsEffects.move( new Static3D(5,5,0) );
+    fpsEffects.apply(mMoveEffect);
 
     mPaint = new Paint();
     mPaint.setAntiAlias(true);
