commit 46e2534517abf49cfa1a01df69c4c9f7cb192dbf
Author: Leszek Koltunski <leszek@distorted.org>
Date:   Wed Dec 14 00:27:48 2016 +0000

    Minor.

diff --git a/src/main/java/org/distorted/library/DistortedFramebuffer.java b/src/main/java/org/distorted/library/DistortedFramebuffer.java
index c441f6d..fa64605 100644
--- a/src/main/java/org/distorted/library/DistortedFramebuffer.java
+++ b/src/main/java/org/distorted/library/DistortedFramebuffer.java
@@ -125,7 +125,7 @@ public class DistortedFramebuffer
       }
 
     mList.add(this);
-    android.util.Log.e("FBO", "created ("+mWidth+","+mHeight+") "+fboIds[0]);
+    //android.util.Log.e("FBO", "created ("+mWidth+","+mHeight+") "+fboIds[0]);
 
     return true;
     }
@@ -137,7 +137,7 @@ public class DistortedFramebuffer
     {
     if( texIds[0]>=0 )
       {
-      android.util.Log.e("FBO", "deleting ("+mWidth+","+mHeight+") "+fboIds[0]);
+      //android.util.Log.e("FBO", "deleting ("+mWidth+","+mHeight+") "+fboIds[0]);
 
       GLES20.glDeleteTextures(1, texIds, 0);
       GLES20.glDeleteFramebuffers(1, fboIds, 0);
@@ -240,7 +240,7 @@ public class DistortedFramebuffer
  */
   public void markForDeletion()
     {
-    android.util.Log.e("FBO", "marking for deletion ("+mWidth+","+mHeight+") "+fboIds[0]);
+    //android.util.Log.e("FBO", "marking for deletion ("+mWidth+","+mHeight+") "+fboIds[0]);
 
     mListMarked = true;
     mMarked     = true;
diff --git a/src/main/java/org/distorted/library/DistortedTexture.java b/src/main/java/org/distorted/library/DistortedTexture.java
index 8a3c912..39194ab 100644
--- a/src/main/java/org/distorted/library/DistortedTexture.java
+++ b/src/main/java/org/distorted/library/DistortedTexture.java
@@ -233,7 +233,7 @@ public class DistortedTexture
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Returns the height of the DistortedObject.
+ * Returns the height of the Texture.
  *
  * @return height of the object, in pixels.
  */
@@ -244,7 +244,7 @@ public class DistortedTexture
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Returns the width of the DistortedObject.
+ * Returns the width of the Texture.
  *
  * @return width of the Object, in pixels.
  */
@@ -255,7 +255,7 @@ public class DistortedTexture
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 /**
- * Returns the depth of the DistortedObject.
+ * Returns the depth of the Texture.
  * <p>
  * Admittedly quite a strange method. Why do we need to pass a Grid to it? Because one cannot determine
  * 'depth' of a texture when rendered based only on the texture itself, that depends on the Grid it is
