Project

General

Profile

« Previous | Next » 

Revision eadf0859

Added by Leszek Koltunski about 7 years ago

Things seem to be working - switch off all debugs.

View differences:

src/main/java/org/distorted/library/DistortedNode.java
174 174
    if( deleteOldFBO && createNewFBO )
175 175
      {
176 176
      newData.mFBO = mData.mFBO;  // just copy over
177
      android.util.Log.d("NODE", "copying over FBOs "+mData.mFBO.getID() );
177
      //android.util.Log.d("NODE", "copying over FBOs "+mData.mFBO.getID() );
178 178
      }
179 179
    else if( deleteOldFBO )
180 180
      {
181 181
      mData.mFBO.markForDeletion();
182
      android.util.Log.d("NODE", "deleting old FBO "+mData.mFBO.getID() );
182
      //android.util.Log.d("NODE", "deleting old FBO "+mData.mFBO.getID() );
183 183
      mData.mFBO = null;
184 184
      }
185 185
    else if( createNewFBO )
186 186
      {
187 187
      newData.mFBO = new DistortedFramebuffer(true, DistortedSurface.TYPE_TREE, mSurface.getWidth(),mSurface.getHeight());
188
      android.util.Log.d("NODE", "creating new FBO "+newData.mFBO.getID() );
188
      //android.util.Log.d("NODE", "creating new FBO "+newData.mFBO.getID() );
189 189
      }
190 190

  
191 191
    mData = newData;

Also available in: Unified diff